Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr64205.c
blob7fa987e6f55fd0adb2c62ac81a10578b9418700e
1 /* { dg-do compile { target { powerpc*-*-* && ilp32 } } } */
2 /* { dg-skip-if "" { powerpc*-*-aix* } } */
3 /* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=G5" } } */
4 /* { dg-options "-O2 -mcpu=G5 -maltivec" } */
6 union ieee754r_Decimal32
8 _Decimal32 sd;
9 unsigned int cc0;
12 unsigned int
13 __decoded32 (_Decimal32 a)
15 union ieee754r_Decimal32 d;
16 d.sd = a;
17 return d.cc0;