* gcc.target/powerpc/builtins-1-be.c <vclzb>: Rename duplicate test
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / rs6000-fpint.c
blob410f780de8b8f312f04a506642b38f02383ad37e
1 /* { dg-do compile { target powerpc*-*-* rs6000-*-* } } */
2 /* { dg-options "-mno-powerpc-gfxopt" } */
3 /* { dg-final { scan-assembler-not "stfiwx" } } */
5 /* A basic test of the old-style (not stfiwx) fp -> int conversion. */
6 int f(double a, double b)
8 int a1 = a;
9 int b1 = b;
10 return a1+b1;