Douglas Gregor | c9e012a | 2009-01-29 17:44:32 +0000 | [diff] [blame^] | 1 | // RUN: clang %s -emit-llvm -o - |
2 | // XFAIL | ||||
3 | struct foo { | ||||
4 | void *a; | ||||
5 | int b; | ||||
6 | }; | ||||
7 | |||||
8 | union { int i; float f; } u = { }; | ||||
9 | |||||
10 | int main(int argc, char **argv) | ||||
11 | { | ||||
12 | union { int i; float f; } u2 = { }; | ||||
13 | static struct foo foo = { | ||||
14 | .b = 1024, | ||||
15 | }; | ||||
16 | } | ||||
17 |