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 asm("acosw"); in aco.h needs to be __asm("acosw");
asm("acosw");
__asm("acosw");
The text was updated successfully, but these errors were encountered:
change asm to __asm__ to support cc's --std=c99 flag (from issue …
asm
__asm__
--std=c99
cd33456
…#16, proposed by Theo Schlossnagle @postwait)
Thank you very much for your report, @postwait.
I just committed a new update to the master branch.
PS:
if anyone interests in this topic, here are some more details about the differences between asm and __asm__:
https://gcc.gnu.org/onlinedocs/gcc-7.2.0/gcc/Alternate-Keywords.html#Alternate-Keywords https://gcc.gnu.org/onlinedocs/gcc/C-Dialect-Options.html
Sorry, something went wrong.
No branches or pull requests
The
asm("acosw");
in aco.h needs to be__asm("acosw");
The text was updated successfully, but these errors were encountered: