diff options
Diffstat (limited to 'test/FrontendC/2006-03-03-MissingInitializer.c')
-rw-r--r-- | test/FrontendC/2006-03-03-MissingInitializer.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/FrontendC/2006-03-03-MissingInitializer.c b/test/FrontendC/2006-03-03-MissingInitializer.c deleted file mode 100644 index 5e027b1..0000000 --- a/test/FrontendC/2006-03-03-MissingInitializer.c +++ /dev/null @@ -1,11 +0,0 @@ -// RUN: %llvmgcc %s -S -o - | opt -std-compile-opts | \ -// RUN: llvm-dis | grep {@nate.*internal unnamed_addr global i32 0} - -struct X { int *XX; int Y;}; - -void foo() { - static int nate = 0; - struct X bob = { &nate, 14 }; - bar(&bob); -} - |