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

Unified Diff: test/CodeGen/JS/simd-loadstore.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/CodeGen/JS/simd-loadstore.ll
diff --git a/test/CodeGen/JS/simd-loadstore.ll b/test/CodeGen/JS/simd-loadstore.ll
index 60ed1679512189127c363fa69de08e0048789378..544adebfc21c0360ee22d77762e3bb03c38c0d84 100644
--- a/test/CodeGen/JS/simd-loadstore.ll
+++ b/test/CodeGen/JS/simd-loadstore.ll
@@ -13,7 +13,7 @@ target triple = "asmjs-unknown-emscripten"
; CHECK: }
define void @fx1(i8* %p) {
%q = bitcast i8* %p to <1 x float>*
- %t = load <1 x float>* %q
+ %t = load <1 x float>, <1 x float>* %q
%s = fadd <1 x float> %t, <float 0.5>
store <1 x float> %s, <1 x float>* %q
ret void
@@ -29,7 +29,7 @@ define void @fx1(i8* %p) {
; CHECK: }
define void @fx2(i8* %p) {
%q = bitcast i8* %p to <2 x float>*
- %t = load <2 x float>* %q
+ %t = load <2 x float>, <2 x float>* %q
%s = fadd <2 x float> %t, <float 3.5, float 7.5>
store <2 x float> %s, <2 x float>* %q
ret void
@@ -45,7 +45,7 @@ define void @fx2(i8* %p) {
; CHECK: }
define void @fx3(i8* %p) {
%q = bitcast i8* %p to <3 x float>*
- %t = load <3 x float>* %q
+ %t = load <3 x float>, <3 x float>* %q
%s = fadd <3 x float> %t, <float 1.5, float 4.5, float 6.5>
store <3 x float> %s, <3 x float>* %q
ret void
@@ -61,7 +61,7 @@ define void @fx3(i8* %p) {
; CHECK: }
define void @fx4(i8* %p) {
%q = bitcast i8* %p to <4 x float>*
- %t = load <4 x float>* %q
+ %t = load <4 x float>, <4 x float>* %q
%s = fadd <4 x float> %t, <float 9.5, float 5.5, float 1.5, float -3.5>
store <4 x float> %s, <4 x float>* %q
ret void

Powered by Google App Engine
This is Rietveld 408576698