test that the ppc backend can do 64-bit cntlz
[oota-llvm.git] / test / DebugInfo / 2006-11-30-Pubnames.cpp
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 - | llvm-as | llc --disable-fp-elim -o Output/Pubnames.s -f
4 // RUN: as Output/Pubnames.s -o Output/Pubnames.o
5 // RUN: g++ Output/Pubnames.o -o Output/Pubnames.exe
6 // RUN: ( echo "break main"; echo "run" ; echo "p Pubnames::pubname" ) > Output/Pubnames.gdbin 
7 // RUN: gdb -q -batch -n -x Output/Pubnames.gdbin Output/Pubnames.exe | tee Output/Pubnames.out | grep '10'
8 // XFAIL: alpha|ia64|arm
9
10 struct Pubnames {
11   static int pubname;
12 };
13
14 int Pubnames::pubname = 10;
15
16 int main (int argc, char** argv) {
17   Pubnames p;
18   return 0;
19 }