We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Two issues
The fix is probably to do the same that we do for FFI functions: pass in a pointer to where the result should go
void F(T result[32]) {...}
An alternative might be to adapt the tuple return code to put the array in a struct the same way that we do if the return type is a tuple.
struct F_result { T r0[32]; }; struct F_result F() {...}
The second might be easier.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Two issues
The fix is probably to do the same that we do for FFI functions: pass in a pointer to where the result should go
An alternative might be to adapt the tuple return code to put the array in a struct the same way that we do if the return type is a tuple.
The second might be easier.
The text was updated successfully, but these errors were encountered: