summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-11-10 17:51:25 +0000
committerJim Laskey <jlaskey@mac.com>2006-11-10 17:51:25 +0000
commitc24300587aefb6b833ebb681fded3939f413e90b (patch)
tree216804970ce8b77294e300ef8597de3577b26398 /test
parent6a944e2592461acfa17e5b25458e2f5e863159e4 (diff)
downloadllvm-c24300587aefb6b833ebb681fded3939f413e90b.tar.gz
llvm-c24300587aefb6b833ebb681fded3939f413e90b.tar.bz2
llvm-c24300587aefb6b833ebb681fded3939f413e90b.tar.xz
Must have a frame pointer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31638 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/DebugInfo/2006-11-06-StackTrace.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/DebugInfo/2006-11-06-StackTrace.cpp b/test/DebugInfo/2006-11-06-StackTrace.cpp
index f79cead3db..a04d7bc6a1 100644
--- a/test/DebugInfo/2006-11-06-StackTrace.cpp
+++ b/test/DebugInfo/2006-11-06-StackTrace.cpp
@@ -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 {