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-2.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-2.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/lea-2.ll | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/lea-2.ll b/llvm/test/CodeGen/X86/lea-2.ll index 82cefb728c6..6fb387975c1 100644 --- a/llvm/test/CodeGen/X86/lea-2.ll +++ b/llvm/test/CodeGen/X86/lea-2.ll @@ -1,4 +1,7 @@ -; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | FileCheck %s +; RUN: llc < %s -mtriple=i686-linux -x86-asm-syntax=intel | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-linux -x86-asm-syntax=intel | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-linux-gnux32 -x86-asm-syntax=intel | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-nacl -x86-asm-syntax=intel | FileCheck %s define i32 @test1(i32 %A, i32 %B) { %tmp1 = shl i32 %A, 2 |

