summaryrefslogtreecommitdiffstats
path: root/test/DebugInfo
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-11-10 17:56:29 +0000
committerJim Laskey <jlaskey@mac.com>2006-11-10 17:56:29 +0000
commita5fd380ac4aaa9dee0099fd3415394a86e60830f (patch)
treed595577097e60eb72279429d9cc7338f71b2dfbd /test/DebugInfo
parentc24300587aefb6b833ebb681fded3939f413e90b (diff)
downloadexternal_llvm-a5fd380ac4aaa9dee0099fd3415394a86e60830f.zip
external_llvm-a5fd380ac4aaa9dee0099fd3415394a86e60830f.tar.gz
external_llvm-a5fd380ac4aaa9dee0099fd3415394a86e60830f.tar.bz2
Must have a frame pointer argument fixed. Now fails on PowerPC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31639 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/DebugInfo')
-rw-r--r--test/DebugInfo/2006-11-06-StackTrace.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/DebugInfo/2006-11-06-StackTrace.cpp b/test/DebugInfo/2006-11-06-StackTrace.cpp
index a04d7bc..2233af4 100644
--- a/test/DebugInfo/2006-11-06-StackTrace.cpp
+++ b/test/DebugInfo/2006-11-06-StackTrace.cpp
@@ -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>