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 function
u32 Q = 10; export fn f() -> reg u32 { reg u32 res; res = Q; return res; }
may not return 10 because jasmin does not insert in the assembly code the necessary .align instruction, so that Q is aligned and thus read properly.
10
.align
Q
The text was updated successfully, but these errors were encountered:
add alignment for glob data (arm) (fixes #587)
ce0b97a
57e55b0
add alignment for glob data (arm) (fixes #587) (#590)
e9c4fda
(cherry picked from commit 57e55b0)
No branches or pull requests
The function
may not return
10
because jasmin does not insert in the assembly code the necessary.align
instruction, so thatQ
is aligned and thus read properly.The text was updated successfully, but these errors were encountered: