summaryrefslogtreecommitdiff
path: root/test/FrontendC/2010-02-16-DbgVarScope.c
blob: 1d912d0f5e5bca6e1bc06c02cdd1fddc14dd12c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// RUN: %llvmgcc -S -O0 -g %s -o - | \
// RUN:    llc --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);
}