Must have a frame pointer argument fixed. Now fails on PowerPC.
authorJim Laskey <jlaskey@mac.com>
Fri, 10 Nov 2006 17:56:29 +0000 (17:56 +0000)
committerJim Laskey <jlaskey@mac.com>
Fri, 10 Nov 2006 17:56:29 +0000 (17:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31639 91177308-0d34-0410-b5e6-96231b3b80d8

test/DebugInfo/2006-11-06-StackTrace.cpp

index a04d7bc6a184ec9adbdb6eadd8b0663ecef16b17..2233af4cef52f11f46f31556cc98b4725808d8a7 100644 (file)
@@ -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>