* gcc.target/powerpc/builtins-1-be.c <vclzb>: Rename duplicate test
[official-gcc.git] / gcc / testsuite / gcc.target / tic6x / fpcmp.c
blob25eaff4109dc43164ed33ee372cab2aa5eeedb9e
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ti_c67x } */
3 /* { dg-options "-O2" } */
4 /* { dg-final { scan-assembler-times "cmpeq.p" 4 } } */
6 double gedf (double x, double y)
8 return x >= y;
11 double ledf (double x, double y)
13 return x <= y;
16 float gesf (float x, float y)
18 return x >= y;
21 float lesf (float x, float y)
23 return x <= y;