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
Don't know what's going on here:
// myconjf.c // epiphany-elf-gcc -O3 -ffast-math -c #include <complex.h> float complex myconjf(float complex n) { return conjf(n); }
What I get
myconjf: mov r2,0x0 movt r2,0x8000 eor r2,r2,r1 mov r3,r0 mov r0,r3 mov r1,r2 rts
What I want
myconjf: mov r2,0x0 movt r2,0x8000 eor r1,r2,r1 rts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Don't know what's going on here:
What I get
What I want
The text was updated successfully, but these errors were encountered: