llvm-project icon indicating copy to clipboard operation
llvm-project copied to clipboard

Bug in GCC testcase

Open niclash opened this issue 2 years ago • 0 comments

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.

niclash avatar Aug 09 '23 07:08 niclash