[gcc]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / sd-pwr6.c
blob947382b7f7bcb2045b1b1e23d3654c61d78411d7
1 /* { dg-do compile { target { powerpc*-*-* } } } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
3 /* { dg-require-effective-target powerpc_vsx_ok } */
4 /* { dg-options "-O2 -mcpu=power6 -mhard-dfp" } */
5 /* { dg-final { scan-assembler-not "lfiwzx" } } */
6 /* { dg-final { scan-assembler-times "lfd" 2 } } */
7 /* { dg-final { scan-assembler-times "dctdp" 2 } } */
8 /* { dg-final { scan-assembler-times "dadd" 1 } } */
9 /* { dg-final { scan-assembler-times "drsp" 1 } } */
11 /* Test that for power6 we need to use a bounce buffer on the stack to load
12 SDmode variables because the power6 does not have a way to directly load
13 32-bit values from memory. */
14 _Decimal32 a;
16 void inc_dec32 (void)
18 a += (_Decimal32) 1.0;