diff options
Diffstat (limited to 'test/CodeGen/AArch64/arm64-vcnt.ll')
-rw-r--r-- | test/CodeGen/AArch64/arm64-vcnt.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/AArch64/arm64-vcnt.ll b/test/CodeGen/AArch64/arm64-vcnt.ll index 903501e..5cff10c 100644 --- a/test/CodeGen/AArch64/arm64-vcnt.ll +++ b/test/CodeGen/AArch64/arm64-vcnt.ll @@ -3,7 +3,7 @@ define <8 x i8> @cls_8b(<8 x i8>* %A) nounwind { ;CHECK-LABEL: cls_8b: ;CHECK: cls.8b - %tmp1 = load <8 x i8>* %A + %tmp1 = load <8 x i8>, <8 x i8>* %A %tmp3 = call <8 x i8> @llvm.aarch64.neon.cls.v8i8(<8 x i8> %tmp1) ret <8 x i8> %tmp3 } @@ -11,7 +11,7 @@ define <8 x i8> @cls_8b(<8 x i8>* %A) nounwind { define <16 x i8> @cls_16b(<16 x i8>* %A) nounwind { ;CHECK-LABEL: cls_16b: ;CHECK: cls.16b - %tmp1 = load <16 x i8>* %A + %tmp1 = load <16 x i8>, <16 x i8>* %A %tmp3 = call <16 x i8> @llvm.aarch64.neon.cls.v16i8(<16 x i8> %tmp1) ret <16 x i8> %tmp3 } @@ -19,7 +19,7 @@ define <16 x i8> @cls_16b(<16 x i8>* %A) nounwind { define <4 x i16> @cls_4h(<4 x i16>* %A) nounwind { ;CHECK-LABEL: cls_4h: ;CHECK: cls.4h - %tmp1 = load <4 x i16>* %A + %tmp1 = load <4 x i16>, <4 x i16>* %A %tmp3 = call <4 x i16> @llvm.aarch64.neon.cls.v4i16(<4 x i16> %tmp1) ret <4 x i16> %tmp3 } @@ -27,7 +27,7 @@ define <4 x i16> @cls_4h(<4 x i16>* %A) nounwind { define <8 x i16> @cls_8h(<8 x i16>* %A) nounwind { ;CHECK-LABEL: cls_8h: ;CHECK: cls.8h - %tmp1 = load <8 x i16>* %A + %tmp1 = load <8 x i16>, <8 x i16>* %A %tmp3 = call <8 x i16> @llvm.aarch64.neon.cls.v8i16(<8 x i16> %tmp1) ret <8 x i16> %tmp3 } @@ -35,7 +35,7 @@ define <8 x i16> @cls_8h(<8 x i16>* %A) nounwind { define <2 x i32> @cls_2s(<2 x i32>* %A) nounwind { ;CHECK-LABEL: cls_2s: ;CHECK: cls.2s - %tmp1 = load <2 x i32>* %A + %tmp1 = load <2 x i32>, <2 x i32>* %A %tmp3 = call <2 x i32> @llvm.aarch64.neon.cls.v2i32(<2 x i32> %tmp1) ret <2 x i32> %tmp3 } @@ -43,7 +43,7 @@ define <2 x i32> @cls_2s(<2 x i32>* %A) nounwind { define <4 x i32> @cls_4s(<4 x i32>* %A) nounwind { ;CHECK-LABEL: cls_4s: ;CHECK: cls.4s - %tmp1 = load <4 x i32>* %A + %tmp1 = load <4 x i32>, <4 x i32>* %A %tmp3 = call <4 x i32> @llvm.aarch64.neon.cls.v4i32(<4 x i32> %tmp1) ret <4 x i32> %tmp3 } |