c++: normalizing ttp constraints [PR115656]
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr100106-sa.c
blobd9248f75a75a01bc6b65d4c5ba5a363cbb7faa8e
1 /* Require ilp32 because -mcpu=604 won't do 64 bits. */
2 /* { dg-do compile { target { ilp32 } } } */
3 /* { dg-skip-if "No strict-align for AIX" { powerpc-ibm-aix* } } */
4 /* { dg-options "-mcpu=604 -O -mstrict-align" } */
6 union a {
7 float _Complex b;
8 long long c;
9 };
11 void g(union a);
13 void e() {
14 union a f = {1.0f};
15 g(f);