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
The following example still segfaults:
def foo { action: (Byte, Byte) => Unit }: Unit = action(42.toByte, 42.toByte) def main() = { foo { (b0, b1) => println(42) println(b0) println(b1) } }
I see three solutions:
%Byte
i64
getelementptr
Unsurprisingly I am for (1).
The text was updated successfully, but these errors were encountered:
acb9c98
marvinborner
Successfully merging a pull request may close this issue.
The following example still segfaults:
I see three solutions:
%Byte
toi64
in llvm and hope for the best. This will require greate care in extern functions acting on bytes.getelementptr
instructions to ask llvm to calculate the size of a frame for us.Unsurprisingly I am for (1).
The text was updated successfully, but these errors were encountered: