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 | a51ef94ec11f8999bd854ff4e336844d8551c507 (patch) | |
tree | a548a055088889e2b74fe7f33bf7c403e8f5ee2c /llvm/test/FrontendC++/2006-11-06-StackTrace.cpp | |
parent | ea1f098dbe156f33a7f137b0e14ffa7d4be2fa21 (diff) | |
download | bcm5719-llvm-a51ef94ec11f8999bd854ff4e336844d8551c507.tar.gz bcm5719-llvm-a51ef94ec11f8999bd854ff4e336844d8551c507.zip |
Pass --disable-cfi to llc.
llvm-svn: 130754
Diffstat (limited to 'llvm/test/FrontendC++/2006-11-06-StackTrace.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2006-11-06-StackTrace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp b/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp index b79c0bf9934..2813c36c004 100644 --- a/llvm/test/FrontendC++/2006-11-06-StackTrace.cpp +++ b/llvm/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 |