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

Unified Diff: tests_lit/llvm2ice_tests/shift.ll

Issue 2478113003: [SubZero] Utilize instructions with immediate operands (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addressed review comments Created 4 years, 1 month 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/nop-insertion-no-vectors.ll ('k') | tests_lit/llvm2ice_tests/switch-opt.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/llvm2ice_tests/shift.ll
diff --git a/tests_lit/llvm2ice_tests/shift.ll b/tests_lit/llvm2ice_tests/shift.ll
index 03477630cc0d0caa25520873648d0baa38bd07b5..cb9aa92eae057332026044f921322aec96c1a531 100644
--- a/tests_lit/llvm2ice_tests/shift.ll
+++ b/tests_lit/llvm2ice_tests/shift.ll
@@ -82,7 +82,7 @@ entry:
; CHECK: shl {{.*}},0x1
; MIPS32-LABEL: shlImmLarge
-; MIPS32: sllv
+; MIPS32: sll
define internal i32 @shlImmNeg(i32 %val) {
entry:
@@ -93,7 +93,7 @@ entry:
; CHECK: shl {{.*}},0xff
; MIPS32-LABEL: shlImmNeg
-; MIPS32: sllv
+; MIPS32: sll
define internal i32 @lshrImmLarge(i32 %val) {
entry:
@@ -104,7 +104,7 @@ entry:
; CHECK: shr {{.*}},0x1
; MIPS32-LABEL: lshrImmLarge
-; MIPS32: srlv
+; MIPS32: srl
define internal i32 @lshrImmNeg(i32 %val) {
entry:
@@ -115,7 +115,7 @@ entry:
; CHECK: shr {{.*}},0xff
; MIPS32-LABEL: lshrImmNeg
-; MIPS32: srlv
+; MIPS32: srl
define internal i32 @ashrImmLarge(i32 %val) {
entry:
@@ -126,7 +126,7 @@ entry:
; CHECK: sar {{.*}},0x1
; MIPS32-LABEL: ashrImmLarge
-; MIPS32: srav
+; MIPS32: sra
define internal i32 @ashrImmNeg(i32 %val) {
entry:
@@ -137,7 +137,7 @@ entry:
; CHECK: sar {{.*}},0xff
; MIPS32-LABEL: ashrImmNeg
-; MIPS32: srav
+; MIPS32: sra
define internal i64 @shlImm64One(i64 %val) {
entry:
« no previous file with comments | « tests_lit/llvm2ice_tests/nop-insertion-no-vectors.ll ('k') | tests_lit/llvm2ice_tests/switch-opt.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698