mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
9dd73a8ff6
llvm-svn: 19173
11 lines
128 B
C
11 lines
128 B
C
// RUN: %llvmgcc -S %s -o /dev/null
|
|
|
|
// XFAIL: *
|
|
|
|
union foo {
|
|
struct { char A, B; } X;
|
|
int C;
|
|
};
|
|
|
|
union foo V = { {1, 2} };
|