mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Pubnames test
llvm-svn: 32038
This commit is contained in:
parent
637b01fc6c
commit
ae62bc1bb9
19
test/DebugInfo/2006-11-30-Pubnames.cpp
Normal file
19
test/DebugInfo/2006-11-30-Pubnames.cpp
Normal file
@ -0,0 +1,19 @@
|
||||
// This is a regression test on debug info to make sure that we can get a
|
||||
// meaningful stack trace from a C++ program.
|
||||
// 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: i[1-9]86|alpha|ia64|arm
|
||||
|
||||
struct Pubnames {
|
||||
static int pubname;
|
||||
};
|
||||
|
||||
int Pubnames::pubname = 10;
|
||||
|
||||
int main (int argc, char** argv) {
|
||||
Pubnames p;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user