[llvm-commits] CVS: llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp

Jim Laskey jlaskey at apple.com
Fri Nov 10 09:56:44 PST 2006



Changes in directory llvm/test/Regression/DebugInfo:

2006-11-06-StackTrace.cpp updated: 1.6 -> 1.7
---
Log message:

Must have a frame pointer argument fixed.  Now fails on PowerPC.

---
Diffs of the changes:  (+2 -2)

 2006-11-06-StackTrace.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp
diff -u llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp:1.6 llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp:1.7
--- llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp:1.6	Fri Nov 10 11:51:25 2006
+++ llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp	Fri Nov 10 11:56:29 2006
@@ -1,12 +1,12 @@
 // 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 | --disable-fp-elim llc -o Output/StackTrace.s -f
+// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | llc --disable-fp-elim -o Output/StackTrace.s -f
 // RUN: as Output/StackTrace.s -o Output/StackTrace.o
 // RUN: g++ Output/StackTrace.o -o Output/StackTrace.exe
 // RUN: ( echo "break DeepStack::deepest"; echo "run 17" ; echo "where" ) > Output/StackTrace.gdbin 
 // RUN: gdb -q -batch -n -x Output/StackTrace.gdbin Output/StackTrace.exe | tee Output/StackTrace.out | grep '#0  DeepStack::deepest.*(this=.*,.*x=33)'
 // RUN: gdb -q -batch -n -x Output/StackTrace.gdbin Output/StackTrace.exe | grep '#7  0x.* in main.*(argc=[12],.*argv=.*)'
-// XFAIL: i[0-9]86
+// XFAIL: *
 
 #include <stdlib.h>
 






More information about the llvm-commits mailing list