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

Unified Diff: src/wasm/wasm-opcodes.cc

Issue 1655883002: [wasm] Initial commit for the Int64Reducer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rename children to inputs Created 4 years, 11 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: src/wasm/wasm-opcodes.cc
diff --git a/src/wasm/wasm-opcodes.cc b/src/wasm/wasm-opcodes.cc
index a609e032611ce8633ee5c148882dfb0df9503e50..b3f6e5ecfff9e376e69a371ecb6742981045e125 100644
--- a/src/wasm/wasm-opcodes.cc
+++ b/src/wasm/wasm-opcodes.cc
@@ -97,7 +97,7 @@ bool WasmOpcodes::IsSupported(WasmOpcode opcode) {
case kExprI64DivU:
case kExprI64RemS:
case kExprI64RemU:
- case kExprI64And:
+ // case kExprI64And:
titzer 2016/02/02 10:14:35 Just remove them
ahaas 2016/02/02 13:32:48 Apparently some tests fail if I remove the instruc
case kExprI64Ior:
case kExprI64Xor:
case kExprI64Shl:
@@ -114,7 +114,7 @@ bool WasmOpcodes::IsSupported(WasmOpcode opcode) {
case kExprI64GtU:
case kExprI64GeU:
- case kExprI32ConvertI64:
+ // case kExprI32ConvertI64:
case kExprI64SConvertI32:
case kExprI64UConvertI32:

Powered by Google App Engine
This is Rietveld 408576698