aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC/2010-02-16-DbgVarScope.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2010-02-16-DbgVarScope.c')
-rw-r--r--test/FrontendC/2010-02-16-DbgVarScope.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/FrontendC/2010-02-16-DbgVarScope.c b/test/FrontendC/2010-02-16-DbgVarScope.c
deleted file mode 100644
index 24910adc056b..000000000000
--- a/test/FrontendC/2010-02-16-DbgVarScope.c
+++ /dev/null
@@ -1,30 +0,0 @@
-// RUN: %llvmgcc -S -O0 -g %s -o - | \
-// RUN: llc -disable-cfi --disable-fp-elim -o %t.s -O0 -relocation-model=pic
-// RUN: %compile_c %t.s -o %t.o
-// RUN: %link %t.o -o %t.exe
-// RUN: echo {break 24\nrun\np loc\n} > %t.in
-// RN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | \
-// RN: grep {$1 = 1}
-
-int g1 = 1;
-int g2 = 2;
-
-int __attribute__((always_inline)) bar() {
- return g2 - g1;
-}
-void foobar() {}
-
-void foo(int s) {
- unsigned loc = 0;
- if (s) {
- loc = 1;
- foobar();
- } else {
- loc = bar();
- foobar();
- }
-}
-
-int main() {
- foo(0);
-}