diff options
Diffstat (limited to 'llvm/test/FrontendC/2003-10-02-UnionLValueError.c')
-rw-r--r-- | llvm/test/FrontendC/2003-10-02-UnionLValueError.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/FrontendC/2003-10-02-UnionLValueError.c b/llvm/test/FrontendC/2003-10-02-UnionLValueError.c index 732f93a7731..2ded0c64b42 100644 --- a/llvm/test/FrontendC/2003-10-02-UnionLValueError.c +++ b/llvm/test/FrontendC/2003-10-02-UnionLValueError.c @@ -1,5 +1,7 @@ // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null +#include <stdio.h> + union U{ int i[8]; char s[80]; |