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

Jim Laskey jlaskey at apple.com
Fri Nov 10 09:51:40 PST 2006



Changes in directory llvm/test/Regression/DebugInfo:

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

Must have a frame pointer.

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

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


Index: llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp
diff -u llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp:1.5 llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp:1.6
--- llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp:1.5	Fri Nov 10 11:47:28 2006
+++ llvm/test/Regression/DebugInfo/2006-11-06-StackTrace.cpp	Fri Nov 10 11:51:25 2006
@@ -1,6 +1,6 @@
 // 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 -o Output/StackTrace.s -f
+// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | --disable-fp-elim llc -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 
@@ -8,7 +8,6 @@
 // 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
 
-
 #include <stdlib.h>
 
 class DeepStack {






More information about the llvm-commits mailing list