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

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

Issue 1687553002: Change all ARM calls into indirect calls. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 4 years, 10 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/branch-opt.ll ('k') | tests_lit/llvm2ice_tests/fp.arm.call.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/fp.arith.ll
diff --git a/tests_lit/llvm2ice_tests/fp.arith.ll b/tests_lit/llvm2ice_tests/fp.arith.ll
index c57045aa69945e07be12dbed10f5d5fa050664db..c9982ae4b5fb72db5dbf20bb332719f4a0aa032e 100644
--- a/tests_lit/llvm2ice_tests/fp.arith.ll
+++ b/tests_lit/llvm2ice_tests/fp.arith.ll
@@ -117,7 +117,9 @@ entry:
; CHECK-LABEL: remFloat
; CHECK: call {{.*}} R_{{.*}} fmodf
; ARM32-LABEL: remFloat
-; ARM32: bl {{.*}} fmodf
+; ARM32: movw {{.+}} fmodf
+; ARM32: movt
+; ARM32: blx
define internal double @remDouble(double %a, double %b) {
entry:
@@ -127,4 +129,6 @@ entry:
; CHECK-LABEL: remDouble
; CHECK: call {{.*}} R_{{.*}} fmod
; ARM32-LABEL: remDouble
-; ARM32: bl {{.*}} fmod
+; ARM32: movw {{.+}} fmod
+; ARM32: movt
+; ARM32: blx
« no previous file with comments | « tests_lit/llvm2ice_tests/branch-opt.ll ('k') | tests_lit/llvm2ice_tests/fp.arm.call.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698