2006-11-30 15:31:49 +00:00
|
|
|
// This is a regression test on debug info to make sure that we can access
|
|
|
|
// qualified global names.
|
2007-04-15 22:37:04 +00:00
|
|
|
// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
|
2009-04-29 00:15:41 +00:00
|
|
|
// RUN: llc --disable-fp-elim -o %t.s -f -O0
|
2008-03-10 06:52:10 +00:00
|
|
|
// RUN: %compile_c %t.s -o %t.o
|
2007-04-15 22:37:04 +00:00
|
|
|
// RUN: %link %t.o -o %t.exe
|
2009-02-02 21:09:36 +00:00
|
|
|
// RUN: %llvmdsymutil %t.exe
|
2007-04-15 22:37:04 +00:00
|
|
|
// RUN: echo {break main\nrun\np Pubnames::pubname} > %t.in
|
|
|
|
// RUN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | grep {\$1 = 10}
|
2006-12-07 16:28:32 +00:00
|
|
|
// XFAIL: alpha|ia64|arm
|
2006-11-30 15:25:59 +00:00
|
|
|
struct Pubnames {
|
|
|
|
static int pubname;
|
|
|
|
};
|
|
|
|
|
|
|
|
int Pubnames::pubname = 10;
|
|
|
|
|
|
|
|
int main (int argc, char** argv) {
|
|
|
|
Pubnames p;
|
|
|
|
return 0;
|
|
|
|
}
|