blob: fb24f19968277c9e5234491b55dc1eb8b4ec0cf2 [file] [log] [blame]
Chris Lattner25519dd2009-09-15 18:23:23 +00001; RUN: llc < %s -march=x86-64 -O0 | FileCheck %s --check-prefix=X64
2; RUN: llc < %s -march=x86 -O0 | FileCheck %s --check-prefix=X32
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +00003; PR3181
4
5; GEP indices are interpreted as signed integers, so they
6; should be sign-extended to 64 bits on 64-bit targets.
7
Chris Lattner25519dd2009-09-15 18:23:23 +00008define i32 @test1(i32 %t3, i32* %t1) nounwind {
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +00009 %t9 = getelementptr i32* %t1, i32 %t3 ; <i32*> [#uses=1]
10 %t15 = load i32* %t9 ; <i32> [#uses=1]
11 ret i32 %t15
Chris Lattner25519dd2009-09-15 18:23:23 +000012; X32: test1:
13; X32: movl (%ecx,%eax,4), %eax
14; X32: ret
15
16; X64: test1:
17; X64: movslq %edi, %rax
18; X64: movl (%rsi,%rax,4), %eax
19; X64: ret
20
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000021}
Chris Lattner25519dd2009-09-15 18:23:23 +000022define i32 @test2(i64 %t3, i32* %t1) nounwind {
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000023 %t9 = getelementptr i32* %t1, i64 %t3 ; <i32*> [#uses=1]
24 %t15 = load i32* %t9 ; <i32> [#uses=1]
25 ret i32 %t15
Chris Lattner25519dd2009-09-15 18:23:23 +000026; X32: test2:
27; X32: movl (%eax,%ecx,4), %eax
28; X32: ret
29
30; X64: test2:
31; X64: movl (%rsi,%rdi,4), %eax
32; X64: ret
Dan Gohmanc8a1a3c2008-12-08 07:57:47 +000033}