diff options
Diffstat (limited to 'test/CodeGen/X86/pr15267.ll')
-rw-r--r-- | test/CodeGen/X86/pr15267.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/pr15267.ll b/test/CodeGen/X86/pr15267.ll index 90df990..e9f41d9 100644 --- a/test/CodeGen/X86/pr15267.ll +++ b/test/CodeGen/X86/pr15267.ll @@ -1,7 +1,7 @@ ; RUN: llc < %s -mtriple=x86_64-pc-linux -mcpu=corei7-avx | FileCheck %s define <4 x i3> @test1(<4 x i3>* %in) nounwind { - %ret = load <4 x i3>* %in, align 1 + %ret = load <4 x i3>, <4 x i3>* %in, align 1 ret <4 x i3> %ret } ; CHECK-LABEL: test1 @@ -20,7 +20,7 @@ define <4 x i3> @test1(<4 x i3>* %in) nounwind { ; CHECK: ret define <4 x i1> @test2(<4 x i1>* %in) nounwind { - %ret = load <4 x i1>* %in, align 1 + %ret = load <4 x i1>, <4 x i1>* %in, align 1 ret <4 x i1> %ret } @@ -40,7 +40,7 @@ define <4 x i1> @test2(<4 x i1>* %in) nounwind { ; CHECK: ret define <4 x i64> @test3(<4 x i1>* %in) nounwind { - %wide.load35 = load <4 x i1>* %in, align 1 + %wide.load35 = load <4 x i1>, <4 x i1>* %in, align 1 %sext = sext <4 x i1> %wide.load35 to <4 x i64> ret <4 x i64> %sext } @@ -68,7 +68,7 @@ define <4 x i64> @test3(<4 x i1>* %in) nounwind { ; CHECK: ret define <16 x i4> @test4(<16 x i4>* %in) nounwind { - %ret = load <16 x i4>* %in, align 1 + %ret = load <16 x i4>, <16 x i4>* %in, align 1 ret <16 x i4> %ret } |