diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/CodeGen/X86/shift-combine.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Notes
Diffstat (limited to 'test/CodeGen/X86/shift-combine.ll')
-rw-r--r-- | test/CodeGen/X86/shift-combine.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/shift-combine.ll b/test/CodeGen/X86/shift-combine.ll index 113dedb4a00c6..ec62bcdcdba1b 100644 --- a/test/CodeGen/X86/shift-combine.ll +++ b/test/CodeGen/X86/shift-combine.ll @@ -12,8 +12,8 @@ define i32 @test_lshr_and(i32 %x) { entry: %tmp2 = lshr i32 %x, 2 %tmp3 = and i32 %tmp2, 3 - %tmp4 = getelementptr [4 x i32]* @array, i32 0, i32 %tmp3 - %tmp5 = load i32* %tmp4, align 4 + %tmp4 = getelementptr [4 x i32], [4 x i32]* @array, i32 0, i32 %tmp3 + %tmp5 = load i32, i32* %tmp4, align 4 ret i32 %tmp5 } |