* gcc.target/powerpc/builtins-1-be.c <vclzb>: Rename duplicate test
[official-gcc.git] / gcc / testsuite / gcc.target / sh / pr63260.c
blobceff756cd89622010fd678f188ac50ffa9a35f14
1 /* Check that there is no FPSCR precision mode change generated for fneg and
2 fabs instructions. */
3 /* { dg-do compile } */
4 /* { dg-options "-O1" } */
5 /* { dg-final { scan-assembler-not "fpscr|fpchg" } } */
7 float
8 test_0 (float x)
10 return -x;
13 double
14 test_1 (double x)
16 return -x;
19 float
20 test_2 (float x)
22 return __builtin_fabs (x);
25 double
26 test_3 (double x)
28 return __builtin_fabs (x);