diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-03 15:56:16 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-05-03 15:56:16 +0000 |
commit | a08bd8963bf2aed55a7c1a317155057ea95ad165 (patch) | |
tree | 25097862712963346f1bace43b5d004f4b68edf6 /test/FrontendC++/2006-11-06-StackTrace.cpp | |
parent | 34868ee4de2829ef6798d1353359069877d9a20b (diff) |
Pass --disable-cfi to llc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130754 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2006-11-06-StackTrace.cpp')
-rw-r--r-- | test/FrontendC++/2006-11-06-StackTrace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC++/2006-11-06-StackTrace.cpp b/test/FrontendC++/2006-11-06-StackTrace.cpp index b79c0bf993..2813c36c00 100644 --- a/test/FrontendC++/2006-11-06-StackTrace.cpp +++ b/test/FrontendC++/2006-11-06-StackTrace.cpp @@ -1,7 +1,7 @@ // 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 - | \ -// RUN: llc --disable-fp-elim -o %t.s -O0 -relocation-model=pic +// RUN: llc --disable-cfi --disable-fp-elim -o %t.s -O0 -relocation-model=pic // RUN: %compile_c %t.s -o %t.o // RUN: %link %t.o -o %t.exe // RUN: echo {break DeepStack::deepest\nrun 17\nwhere\n} > %t.in |