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
Jean-Christophe noticed that this program
export fn ble::e() -> reg u64 { reg u64 x = 0; return x; } export fn ble__e() -> reg u64 { reg u64 x = 1; return x; }
generates
_ble__e: ble__e: movq $1, %rax ret _ble__e: ble__e: movq $0, %rax ret
which is not good. The compiler does check that we don't have a namespace ble with a function e, so we probably want to extend that?.
ble
e
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Jean-Christophe noticed that this program
generates
which is not good.
The compiler does check that we don't have a namespace
ble
with a functione
, so we probably want to extend that?.The text was updated successfully, but these errors were encountered: