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
I can't find where to submit this, and thought this repository was the closest one;
https://opensource.apple.com/source/gcc/gcc-5664/gcc/testsuite/gcc.dg/arm-eabi1.c.auto.html
contains minor bugs;
ieq (__aeabi_dcmplt (dzero, dzero), 0); and ieq (__aeabi_fcmplt (fzero, fzero), 0);
ieq (__aeabi_dcmplt (dzero, dzero), 0);
ieq (__aeabi_fcmplt (fzero, fzero), 0);
occurs twice and the latter should be
ieq (__aeabi_dcmpgt (dzero, dzero), 0); ieq (__aeabi_fcmpgt (fzero, fzero), 0);
ieq (__aeabi_dcmpgt (dzero, dzero), 0);
ieq (__aeabi_fcmpgt (fzero, fzero), 0);
I am making the assumption that people here knows where this "issue" should be filed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I can't find where to submit this, and thought this repository was the closest one;
https://opensource.apple.com/source/gcc/gcc-5664/gcc/testsuite/gcc.dg/arm-eabi1.c.auto.html
contains minor bugs;
ieq (__aeabi_dcmplt (dzero, dzero), 0);
and
ieq (__aeabi_fcmplt (fzero, fzero), 0);
occurs twice and the latter should be
ieq (__aeabi_dcmpgt (dzero, dzero), 0);
ieq (__aeabi_fcmpgt (fzero, fzero), 0);
I am making the assumption that people here knows where this "issue" should be filed.
The text was updated successfully, but these errors were encountered: