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
Compilation of the program below fails with:
variable allocation: variable “s.159” (declared at "bug_680.jazz", line 3 (12-13)) may not be initialized
export fn adc_stack(reg u64 x) { stack u64 s; s = 0; _, s += x; }
The text was updated successfully, but these errors were encountered:
I encountered the same bug. Here is another example
export fn main () -> reg u64 { reg u64 x; stack u64 y; x = 0; y = #MOV(x); return x; }
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Compilation of the program below fails with:
The text was updated successfully, but these errors were encountered: