Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(784)

Unified Diff: test/Transforms/NaCl/constant-vector-rematerialization.ll

Issue 1151093004: Changes from 3.7 merge to files not in upstream (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/Transforms/NaCl/constant-vector-rematerialization.ll
diff --git a/test/Transforms/NaCl/constant-vector-rematerialization.ll b/test/Transforms/NaCl/constant-vector-rematerialization.ll
index 8647cef03ae7c3ef0fb8536d053505aa2c62c6ba..625c8c5817e590444e65e2b2cb155b3c3474a09c 100644
--- a/test/Transforms/NaCl/constant-vector-rematerialization.ll
+++ b/test/Transforms/NaCl/constant-vector-rematerialization.ll
@@ -13,7 +13,7 @@ target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64
define <4 x i32> @test_vec_i32() {
%bc = bitcast [4 x i32]* @veci32 to <4 x i32>*
- %v = load <4 x i32>* %bc
+ %v = load <4 x i32>, <4 x i32>* %bc
ret <4 x i32> %v
}
; CHECK-LABEL: @test_vec_i32(
@@ -21,7 +21,7 @@ define <4 x i32> @test_vec_i32() {
define <4 x i32> @test_vec_i32_zero() {
%bc = bitcast [4 x i32]* @veci32zero to <4 x i32>*
- %v = load <4 x i32>* %bc
+ %v = load <4 x i32>, <4 x i32>* %bc
ret <4 x i32> %v
}
; CHECK-LABEL: @test_vec_i32_zero(
@@ -29,7 +29,7 @@ define <4 x i32> @test_vec_i32_zero() {
define <4 x i32> @test_vec_i8() {
%bc = bitcast [16 x i8]* @veci8 to <4 x i32>*
- %v = load <4 x i32>* %bc
+ %v = load <4 x i32>, <4 x i32>* %bc
ret <4 x i32> %v
}
; CHECK-LABEL: @test_vec_i8(
@@ -37,7 +37,7 @@ define <4 x i32> @test_vec_i8() {
define <4 x i32> @test_vec_i8_zero() {
%bc = bitcast [16 x i8]* @veci8zero to <4 x i32>*
- %v = load <4 x i32>* %bc
+ %v = load <4 x i32>, <4 x i32>* %bc
ret <4 x i32> %v
}
; CHECK-LABEL: @test_vec_i8_zero(

Powered by Google App Engine
This is Rietveld 408576698