1 // RUN: %clang_cc1 %s -triple powerpc-pc-linux -emit-llvm -o - | grep {i32 32} | count 3 2 // XFAIL: * 3 // Every printf has 'i32 0' for the GEP of the string; no point counting those. 4 typedef unsigned int Foo __attribute__((aligned(32))); 5 typedef union{Foo:0;}a; 6 typedef union{int x; Foo:0;}b; 7 extern int printf(const char*, ...); main()8main() { 9 printf("%ld\n", sizeof(a)); 10 printf("%ld\n", __alignof__(a)); 11 printf("%ld\n", sizeof(b)); 12 printf("%ld\n", __alignof__(b)); 13 } 14