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

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

Issue 277033003: Modify pnacl subzero to be able to read pnacl bitcode files. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 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/empty-func.ll ('k') | tests_lit/llvm2ice_tests/fpconst.pnacl.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 8981c9efd680ae78b8215572f069d3facdd71807..a9951d9a410a44f306b66899e1ae5e244580e68a 100644
--- a/tests_lit/llvm2ice_tests/fp.pnacl.ll
+++ b/tests_lit/llvm2ice_tests/fp.pnacl.ll
@@ -1,6 +1,8 @@
; RUIN: %llvm2ice --verbose none %s | FileCheck %s
; RUIN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s
-; RUN: %szdiff --llvm2ice=%llvm2ice %s | FileCheck --check-prefix=DUMP %s
+; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s
+; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \
+; RUN: | FileCheck --check-prefix=DUMP %s
@__init_array_start = internal constant [0 x i8] zeroinitializer, align 4
@__fini_array_start = internal constant [0 x i8] zeroinitializer, align 4
@@ -1017,8 +1019,8 @@ entry:
define internal float @loadFloat(i32 %a) {
entry:
- %a.asptr = inttoptr i32 %a to float*
- %v0 = load float* %a.asptr, align 4
+ %__1 = inttoptr i32 %a to float*
+ %v0 = load float* %__1, align 4
ret float %v0
}
; CHECK: loadFloat:
@@ -1027,8 +1029,8 @@ entry:
define internal double @loadDouble(i32 %a) {
entry:
- %a.asptr = inttoptr i32 %a to double*
- %v0 = load double* %a.asptr, align 8
+ %__1 = inttoptr i32 %a to double*
+ %v0 = load double* %__1, align 8
ret double %v0
}
; CHECK: loadDouble:
@@ -1037,8 +1039,8 @@ entry:
define internal void @storeFloat(i32 %a, float %value) {
entry:
- %a.asptr = inttoptr i32 %a to float*
- store float %value, float* %a.asptr, align 4
+ %__2 = inttoptr i32 %a to float*
+ store float %value, float* %__2, align 4
ret void
}
; CHECK: storeFloat:
@@ -1046,8 +1048,8 @@ entry:
define internal void @storeDouble(i32 %a, double %value) {
entry:
- %a.asptr = inttoptr i32 %a to double*
- store double %value, double* %a.asptr, align 8
+ %__2 = inttoptr i32 %a to double*
+ store double %value, double* %__2, align 8
ret void
}
; CHECK: storeDouble:
« no previous file with comments | « tests_lit/llvm2ice_tests/empty-func.ll ('k') | tests_lit/llvm2ice_tests/fpconst.pnacl.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698