Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / FrontendC / 2009-06-18-StaticInitTailPadPack.c
blob17f35c04a9ecf36d76362cfae2882c61071a597d
1 // RUN: %llvmgcc %s -S -o -
2 // rdar://6983634
4 typedef struct A *Foo;
5 #pragma pack(push, 2)
6 struct Bar {
7 Foo f1;
8 unsigned short f2;
9 float f3;
11 struct Baz {
12 struct Bar f1;
13 struct Bar f2;
15 struct Qux {
16 unsigned long f1;
17 struct Baz f2;
19 extern const struct Qux Bork;
20 const struct Qux Bork = {
23 {0},
24 {0}