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

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: Spelling 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
« no previous file with comments | « test/cctest/wasm/test-run-wasm-64.cc ('k') | test/mjsunit/wasm/asm-wasm-u32.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1b4d3a978c41749674d358cdcf5ce3468a519c6e..6224e8fa1f49f2f9ad32394284208e6e2c6045d1 100644
--- a/test/mjsunit/wasm/asm-wasm-i32.js
+++ b/test/mjsunit/wasm/asm-wasm-i32.js
@@ -218,9 +218,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,
« no previous file with comments | « test/cctest/wasm/test-run-wasm-64.cc ('k') | test/mjsunit/wasm/asm-wasm-u32.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698