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
wiz crashes with a segmentation fault if I use a compile_if attribute that references an inline func's let argument.
compile_if
inline func
let
(6502 platform)
bank code @ 0x8000 : [constdata; 0x8000]; in code { inline func f(let v : u8) { #[compile_if(v != 0)] { a += v; } } func test() { f(12); } }
wiz output:
> ~/repo/snes/unnamed-snes-game/wiz/bin/wiz --system 6502 -o /tmp/wiz.bin bug.wiz * wiz: version 0.1.2 (alpha) >> Parsing... >> Compiling... zsh: segmentation fault (core dumped) ~/repo/snes/unnamed-snes-game/wiz/bin/wiz --system 6502 -o /tmp/wiz.bin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
wiz crashes with a segmentation fault if I use a
compile_if
attribute that references aninline func
'slet
argument.(6502 platform)
wiz output:
The text was updated successfully, but these errors were encountered: