According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git] / test / FrontendC++ / 2006-11-30-Pubnames.cpp
blob239d3f525b7912ade2fa0e3aa242f49972f79a65
1 // This is a regression test on debug info to make sure that we can access
2 // qualified global names.
3 // RUN: %llvmgcc -S -O0 -g %s -o - | \
4 // RUN: llc --disable-fp-elim -o %t.s -O0
5 // RUN: %compile_c %t.s -o %t.o
6 // RUN: %link %t.o -o %t.exe
7 // RUN: %llvmdsymutil %t.exe
8 // RUN: echo {break main\nrun\np Pubnames::pubname} > %t.in
9 // RUN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | grep {\$1 = 10}
11 // XFAIL: alpha,arm
13 struct Pubnames {
14 static int pubname;
17 int Pubnames::pubname = 10;
19 int main (int argc, char** argv) {
20 Pubnames p;
21 return 0;