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 compiler produces invalid assembly when compiling the following program:
inline fn get(inline u32 i) -> reg u32 { reg u32 r; global u32 g; g = i; r = g; return r; } export fn main() -> reg u32 { reg u32 a b; a = get(0xa); b = get(0xb); b += a; return b; }
Processing the generated assembly yields:
bug_871.s: Assembler messages: bug_871.s:21: Error: symbol `G$g' is already defined
The text was updated successfully, but these errors were encountered:
Fixed by #907.
Sorry, something went wrong.
No branches or pull requests
The compiler produces invalid assembly when compiling the following program:
Processing the generated assembly yields:
The text was updated successfully, but these errors were encountered: