diff options
Diffstat (limited to 'clang/test/CodeGen/2007-05-16-EmptyStruct.c')
-rw-r--r-- | clang/test/CodeGen/2007-05-16-EmptyStruct.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2007-05-16-EmptyStruct.c b/clang/test/CodeGen/2007-05-16-EmptyStruct.c new file mode 100644 index 0000000..14aaff0 --- /dev/null +++ b/clang/test/CodeGen/2007-05-16-EmptyStruct.c @@ -0,0 +1,5 @@ +// PR 1417 +// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s + +// CHECK: global %struct.anon* null +struct { } *X; |