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/movbe.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Vendor import of llvm trunk r238337:vendor/llvm/llvm-trunk-r238337
Notes
Notes:
svn path=/vendor/llvm/dist/; revision=283625
svn path=/vendor/llvm/llvm-trunk-r238337/; revision=283626; tag=vendor/llvm/llvm-trunk-r238337
Diffstat (limited to 'test/CodeGen/X86/movbe.ll')
-rw-r--r-- | test/CodeGen/X86/movbe.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/movbe.ll b/test/CodeGen/X86/movbe.ll index e248410b2020..49e765de2e77 100644 --- a/test/CodeGen/X86/movbe.ll +++ b/test/CodeGen/X86/movbe.ll @@ -16,7 +16,7 @@ define void @test1(i16* nocapture %x, i16 %y) nounwind { } define i16 @test2(i16* %x) nounwind { - %load = load i16* %x, align 2 + %load = load i16, i16* %x, align 2 %bswap = call i16 @llvm.bswap.i16(i16 %load) ret i16 %bswap ; CHECK-LABEL: test2: @@ -36,7 +36,7 @@ define void @test3(i32* nocapture %x, i32 %y) nounwind { } define i32 @test4(i32* %x) nounwind { - %load = load i32* %x, align 4 + %load = load i32, i32* %x, align 4 %bswap = call i32 @llvm.bswap.i32(i32 %load) ret i32 %bswap ; CHECK-LABEL: test4: @@ -56,7 +56,7 @@ define void @test5(i64* %x, i64 %y) nounwind { } define i64 @test6(i64* %x) nounwind { - %load = load i64* %x, align 8 + %load = load i64, i64* %x, align 8 %bswap = call i64 @llvm.bswap.i64(i64 %load) ret i64 %bswap ; CHECK-LABEL: test6: |