llvm-project
llvm-project copied to clipboard
Bug in GCC testcase
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.