mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
b9849700ed
Note that apparently 'failing command | succeeding command' is a fail on csh but not on sh. :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18114 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
143 B
C
11 lines
143 B
C
// RUN: %llvmgcc -S %s -o /dev/null
|
|
|
|
// XFAIL: linux,sun,darwin
|
|
|
|
union foo {
|
|
struct { char A, B; } X;
|
|
int C;
|
|
};
|
|
|
|
union foo V = { {1, 2} };
|