diff options
author | Hans Wennborg <hans@hanshq.net> | 2016-03-30 23:38:01 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2016-03-30 23:38:01 +0000 |
commit | 6596977130f9fb5179b16d3c3c291c69efd627bb (patch) | |
tree | 947efc1f13ea3ee726a20057903113f151c3dd88 /llvm/test/CodeGen/X86/call-push.ll | |
parent | 0e450a5d61795a2ca9160a34a75855fd1d16e16c (diff) | |
download | bcm5719-llvm-6596977130f9fb5179b16d3c3c291c69efd627bb.tar.gz bcm5719-llvm-6596977130f9fb5179b16d3c3c291c69efd627bb.zip |
[X86] Enable call frame optimization ("mov to push") not only for optsize (PR26325)
The size savings are significant, and from what I can tell, both ICC and GCC do this.
Differential Revision: http://reviews.llvm.org/D18573
llvm-svn: 264966
Diffstat (limited to 'llvm/test/CodeGen/X86/call-push.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/call-push.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/call-push.ll b/llvm/test/CodeGen/X86/call-push.ll index 6bcb5d66561..e8afa1e77af 100644 --- a/llvm/test/CodeGen/X86/call-push.ll +++ b/llvm/test/CodeGen/X86/call-push.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mtriple=i386-apple-darwin -disable-fp-elim | FileCheck %s +; RUN: llc < %s -mtriple=i386-apple-darwin -disable-fp-elim -no-x86-call-frame-opt | FileCheck %s %struct.decode_t = type { i8, i8, i8, i8, i16, i8, i8, %struct.range_t** } %struct.range_t = type { float, float, i32, i32, i32, [0 x i8] } |