libstdc++: Remove std::__is_pointer and std::__is_scalar [PR115497]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / rs6000-fpint.c
blobfdb0a371929f4bdc8fc363d2ae95ca55ba4188a2
1 /* { dg-options "-mno-powerpc-gfxopt -mdejagnu-cpu=power6" } */
2 /* { dg-final { scan-assembler-not "stfiwx" } } */
4 /* A basic test of the old-style (not stfiwx) fp -> int conversion. */
5 int f(double a, double b)
7 int a1 = a;
8 int b1 = b;
9 return a1+b1;