Index: src/compiler/wasm-compiler.cc |
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc |
index 1b87c3567445b3baa226294d1d82341f1b8b50a3..7badf9e7f681329eb596732840e64cfb8b4010f8 100644 |
--- a/src/compiler/wasm-compiler.cc |
+++ b/src/compiler/wasm-compiler.cc |
@@ -549,19 +549,12 @@ Node* WasmGraphBuilder::Binop(wasm::WasmOpcode opcode, Node* left, |
op = m->Uint64LessThanOrEqual(); |
std::swap(left, right); |
break; |
- |
-#if WASM_64 |
- // Opcodes only supported on 64-bit platforms. |
- // TODO(titzer): query the machine operator builder here instead of #ifdef. |
case wasm::kExprI64Ror: |
op = m->Word64Ror(); |
right = MaskShiftCount64(right); |
break; |
case wasm::kExprI64Rol: |
- right = MaskShiftCount64(right); |
return BuildI64Rol(left, right); |
-#endif |
- |
case wasm::kExprF32CopySign: |
return BuildF32CopySign(left, right); |
case wasm::kExprF64CopySign: |