Index: test/cctest/wasm/test-run-wasm-64.cc |
diff --git a/test/cctest/wasm/test-run-wasm-64.cc b/test/cctest/wasm/test-run-wasm-64.cc |
index ea3f7f1974e642d5680c9c00d49477398d5f0d61..ceec1912f9a438d1779f25ee8b6fc1f2a1421fc8 100644 |
--- a/test/cctest/wasm/test-run-wasm-64.cc |
+++ b/test/cctest/wasm/test-run-wasm-64.cc |
@@ -39,52 +39,52 @@ |
#define MIPS_OR_ARM_OR_X87 false |
#endif |
-#define FOREACH_I64_OPERATOR(V) \ |
- V(DepthFirst, true) \ |
- V(I64Const, true) \ |
- V(I64Return, true) \ |
- V(I64Param, true) \ |
- V(I64LoadStore, true) \ |
- V(I64Add, true) \ |
- V(I64Sub, false) \ |
- V(I64Mul, false) \ |
- V(I64DivS, true) \ |
- V(I64DivU, true) \ |
- V(I64RemS, true) \ |
- V(I64RemU, true) \ |
- V(I64And, true) \ |
- V(I64Ior, true) \ |
- V(I64Xor, true) \ |
- V(I64Shl, !MIPS_OR_X87) \ |
- V(I64ShrU, !MIPS_OR_ARM_OR_X87) \ |
- V(I64ShrS, !MIPS_OR_ARM_OR_X87) \ |
- V(I64Eq, true) \ |
- V(I64Ne, true) \ |
- V(I64LtS, true) \ |
- V(I64LeS, true) \ |
- V(I64LtU, true) \ |
- V(I64LeU, true) \ |
- V(I64GtS, true) \ |
- V(I64GeS, true) \ |
- V(I64GtU, true) \ |
- V(I64GeU, true) \ |
- V(I64Clz, false) \ |
- V(I64Ctz, false) \ |
- V(I64Popcnt, false) \ |
- V(I32ConvertI64, true) \ |
- V(I64SConvertF32, false) \ |
- V(I64SConvertF64, false) \ |
- V(I64UConvertF32, false) \ |
- V(I64UConvertF64, false) \ |
- V(I64SConvertI32, true) \ |
- V(I64UConvertI32, true) \ |
- V(F32SConvertI64, true) \ |
- V(F32UConvertI64, true) \ |
- V(F64SConvertI64, true) \ |
- V(F64UConvertI64, true) \ |
- V(F64ReinterpretI64, false) \ |
- V(I64ReinterpretF64, false) \ |
- V(I64Ror, false) \ |
+#define FOREACH_I64_OPERATOR(V) \ |
+ V(DepthFirst, true) \ |
+ V(I64Const, true) \ |
+ V(I64Return, true) \ |
+ V(I64Param, true) \ |
+ V(I64LoadStore, true) \ |
+ V(I64Add, true) \ |
+ V(I64Sub, false) \ |
+ V(I64Mul, false) \ |
+ V(I64DivS, true) \ |
+ V(I64DivU, true) \ |
+ V(I64RemS, true) \ |
+ V(I64RemU, true) \ |
+ V(I64And, true) \ |
+ V(I64Ior, true) \ |
+ V(I64Xor, true) \ |
+ V(I64Shl, !MIPS_OR_X87) \ |
+ V(I64ShrU, !MIPS_OR_X87) \ |
+ V(I64ShrS, !MIPS_OR_X87) \ |
+ V(I64Eq, true) \ |
+ V(I64Ne, true) \ |
+ V(I64LtS, true) \ |
+ V(I64LeS, true) \ |
+ V(I64LtU, true) \ |
+ V(I64LeU, true) \ |
+ V(I64GtS, true) \ |
+ V(I64GeS, true) \ |
+ V(I64GtU, true) \ |
+ V(I64GeU, true) \ |
+ V(I64Clz, false) \ |
+ V(I64Ctz, false) \ |
+ V(I64Popcnt, false) \ |
+ V(I32ConvertI64, true) \ |
+ V(I64SConvertF32, false) \ |
+ V(I64SConvertF64, false) \ |
+ V(I64UConvertF32, false) \ |
+ V(I64UConvertF64, false) \ |
+ V(I64SConvertI32, true) \ |
+ V(I64UConvertI32, true) \ |
+ V(F32SConvertI64, true) \ |
+ V(F32UConvertI64, true) \ |
+ V(F64SConvertI64, true) \ |
+ V(F64UConvertI64, true) \ |
+ V(F64ReinterpretI64, false) \ |
+ V(I64ReinterpretF64, false) \ |
+ V(I64Ror, false) \ |
V(I64Rol, false) |
#define DECLARE_CONST(name, cond) static const bool kSupported_##name = cond; |