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

Unified Diff: test/mjsunit/wasm/asm-wasm-i32.js

Issue 1845443003: [wasm] Mask shift counts on architectures that don't implicitly mask. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/mjsunit/wasm/asm-wasm-i32.js
diff --git a/test/mjsunit/wasm/asm-wasm-i32.js b/test/mjsunit/wasm/asm-wasm-i32.js
index 5e13c72b80494192541001483af7047941430830..e3f7e5845edab42a871d12d572ac2c35f451faa4 100644
--- a/test/mjsunit/wasm/asm-wasm-i32.js
+++ b/test/mjsunit/wasm/asm-wasm-i32.js
@@ -219,9 +219,9 @@ var funcs = [
i32_and,
i32_or,
i32_xor,
- // TODO(titzer): i32_shl on arm
- // TODO(titzer): i32_shr on arm
- // TODO(titzer): i32_sar on arm
+ i32_shl,
+ i32_shr,
+ i32_sar,
i32_eq,
i32_ne,
i32_lt,

Powered by Google App Engine
This is Rietveld 408576698