aboutsummaryrefslogtreecommitdiffstats
path: root/test/DebugInfo/2006-11-30-Pubnames.cpp
blob: 4b9376e0a841521fa161a004bdee3e15d590dbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// This is a regression test on debug info to make sure that we can access 
// qualified global names.
// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | llc --disable-fp-elim -o Output/Pubnames.s -f
// RUN: as Output/Pubnames.s -o Output/Pubnames.o
// RUN: g++ Output/Pubnames.o -o Output/Pubnames.exe
// RUN: ( echo "break main"; echo "run" ; echo "p Pubnames::pubname" ) > Output/Pubnames.gdbin 
// RUN: gdb -q -batch -n -x Output/Pubnames.gdbin Output/Pubnames.exe | tee Output/Pubnames.out | grep '10'
// XFAIL: alpha|ia64|arm

struct Pubnames {
  static int pubname;
};

int Pubnames::pubname = 10;

int main (int argc, char** argv) {
  Pubnames p;
  return 0;
}