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

Unified Diff: tests_lit/llvm2ice_tests/fp.pnacl.ll

Issue 1161543005: Subzero: Changes needed for LLVM 3.7 integration. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.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
« no previous file with comments | « tests_lit/llvm2ice_tests/convert.ll ('k') | tests_lit/llvm2ice_tests/ias-multi-reloc.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/fp.pnacl.ll
diff --git a/tests_lit/llvm2ice_tests/fp.pnacl.ll b/tests_lit/llvm2ice_tests/fp.pnacl.ll
index ddd51af724c23b4335c98be9716fb0ddb7ac2780..ef66b02d69aa14295e4a8434f83c502ba3e05f17 100644
--- a/tests_lit/llvm2ice_tests/fp.pnacl.ll
+++ b/tests_lit/llvm2ice_tests/fp.pnacl.ll
@@ -1103,7 +1103,7 @@ entry:
define internal float @loadFloat(i32 %a) {
entry:
%__1 = inttoptr i32 %a to float*
- %v0 = load float* %__1, align 4
+ %v0 = load float, float* %__1, align 4
ret float %v0
}
; CHECK-LABEL: loadFloat
@@ -1113,7 +1113,7 @@ entry:
define internal double @loadDouble(i32 %a) {
entry:
%__1 = inttoptr i32 %a to double*
- %v0 = load double* %__1, align 8
+ %v0 = load double, double* %__1, align 8
ret double %v0
}
; CHECK-LABEL: loadDouble
« no previous file with comments | « tests_lit/llvm2ice_tests/convert.ll ('k') | tests_lit/llvm2ice_tests/ias-multi-reloc.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698