diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2015-05-23 00:31:56 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2015-05-23 00:31:56 +0000 |
commit | aa115fbb7be451f7c7d87f562b22e67a3034673f (patch) | |
tree | ac2b6440a72ecbfbe9259dd70b6293640a0e354d | |
parent | 992c6fa5dbb693ea98916b3b07728882cc9c7285 (diff) | |
download | bcm5719-llvm-aa115fbb7be451f7c7d87f562b22e67a3034673f.tar.gz bcm5719-llvm-aa115fbb7be451f7c7d87f562b22e67a3034673f.zip |
Remove unnecessary command line option "-disable-fp-elim".
This option currently has no effect as function attribute
"no-frame-pointer-elim=false" overrides it.
llvm-svn: 238077
-rw-r--r-- | llvm/test/CodeGen/X86/2014-08-29-CompactUnwind.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/2014-08-29-CompactUnwind.ll b/llvm/test/CodeGen/X86/2014-08-29-CompactUnwind.ll index 120eba7a6dd..e7e8bb724fc 100644 --- a/llvm/test/CodeGen/X86/2014-08-29-CompactUnwind.ll +++ b/llvm/test/CodeGen/X86/2014-08-29-CompactUnwind.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 -mcpu corei7 -filetype=obj -o - | llvm-objdump -d -unwind-info -s - | FileCheck %s +; RUN: llc < %s -mtriple x86_64-apple-darwin11 -mcpu corei7 -filetype=obj -o - | llvm-objdump -d -unwind-info -s - | FileCheck %s ; Regression test for http://llvm.org/bugs/show_bug.cgi?id=20800. ; ModuleID = 'asan_report.ii' |