diff options
author | Pavel Chupin <pavel.v.chupin@intel.com> | 2014-08-20 11:59:22 +0000 |
---|---|---|
committer | Pavel Chupin <pavel.v.chupin@intel.com> | 2014-08-20 11:59:22 +0000 |
commit | 01a4e0a1ef710f8980ca459b9fe550f6e348d9b4 (patch) | |
tree | ce4cffdef9a4fe093dbddd18eb799c1f58d1a0b7 /llvm/test/CodeGen/X86/lea-4.ll | |
parent | c655f0c898ab43e8986ba1d47f66837c529e6c8a (diff) | |
download | bcm5719-llvm-01a4e0a1ef710f8980ca459b9fe550f6e348d9b4.tar.gz bcm5719-llvm-01a4e0a1ef710f8980ca459b9fe550f6e348d9b4.zip |
[x32] Fix FrameIndex check in SelectLEA64_32Addr
Summary:
Fixes http://llvm.org/bugs/show_bug.cgi?id=20016 reproducible on new
lea-5.ll case.
Also use RSP/RBP for x32 lea to save 1 byte used for 0x67 prefix in
ESP/EBP case.
Test Plan: lea tests modified to include x32/nacl and new test added
Reviewers: nadav, dschuff, t.p.northover
Subscribers: llvm-commits, zinovy.nis
Differential Revision: http://reviews.llvm.org/D4929
llvm-svn: 216065
Diffstat (limited to 'llvm/test/CodeGen/X86/lea-4.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/lea-4.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/lea-4.ll b/llvm/test/CodeGen/X86/lea-4.ll index cef47264a58..00c2278c54b 100644 --- a/llvm/test/CodeGen/X86/lea-4.ll +++ b/llvm/test/CodeGen/X86/lea-4.ll @@ -1,4 +1,7 @@ -; RUN: llc < %s -march=x86-64 | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-linux-gnux32 | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-nacl | FileCheck %s + define zeroext i16 @t1(i32 %on_off) nounwind { entry: |