diff options
Diffstat (limited to 'test/CodeGen/NVPTX/misaligned-vector-ldst.ll')
-rw-r--r-- | test/CodeGen/NVPTX/misaligned-vector-ldst.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/NVPTX/misaligned-vector-ldst.ll b/test/CodeGen/NVPTX/misaligned-vector-ldst.ll index 90c9c43..2ad72b0 100644 --- a/test/CodeGen/NVPTX/misaligned-vector-ldst.ll +++ b/test/CodeGen/NVPTX/misaligned-vector-ldst.ll @@ -10,7 +10,7 @@ define <4 x float> @t1(i8* %p1) { ; CHECK-NOT: ld.f32 ; CHECK: ld.u8 %cast = bitcast i8* %p1 to <4 x float>* - %r = load <4 x float>* %cast, align 1 + %r = load <4 x float>, <4 x float>* %cast, align 1 ret <4 x float> %r } @@ -20,7 +20,7 @@ define <4 x float> @t2(i8* %p1) { ; CHECK-NOT: ld.v2 ; CHECK: ld.f32 %cast = bitcast i8* %p1 to <4 x float>* - %r = load <4 x float>* %cast, align 4 + %r = load <4 x float>, <4 x float>* %cast, align 4 ret <4 x float> %r } @@ -29,7 +29,7 @@ define <4 x float> @t3(i8* %p1) { ; CHECK-NOT: ld.v4 ; CHECK: ld.v2 %cast = bitcast i8* %p1 to <4 x float>* - %r = load <4 x float>* %cast, align 8 + %r = load <4 x float>, <4 x float>* %cast, align 8 ret <4 x float> %r } @@ -37,7 +37,7 @@ define <4 x float> @t3(i8* %p1) { define <4 x float> @t4(i8* %p1) { ; CHECK: ld.v4 %cast = bitcast i8* %p1 to <4 x float>* - %r = load <4 x float>* %cast, align 16 + %r = load <4 x float>, <4 x float>* %cast, align 16 ret <4 x float> %r } |