Index: test/mjsunit/wasm/calls.js |
diff --git a/test/mjsunit/wasm/calls.js b/test/mjsunit/wasm/calls.js |
index 94e97e6995b203c8fe2e91d9feaba595f1b1feba..4da0501cf2fdedd4af7d54348855aca50dd871a5 100644 |
--- a/test/mjsunit/wasm/calls.js |
+++ b/test/mjsunit/wasm/calls.js |
@@ -40,28 +40,6 @@ function assertFunction(module, func) { |
return exp; |
} |
-(function I64SubTest() { |
- |
- var builder = new WasmModuleBuilder(); |
- |
- builder.addMemory(1, 1, true); |
- builder.addFunction("sub", kSig_l_ll) |
- .addBody([ // -- |
- kExprGetLocal, 0, // -- |
- kExprGetLocal, 1, // -- |
- kExprI64Sub]) // -- |
- .exportFunc() |
- |
- var module = builder.instantiate(); |
- assertModule(module, kPageSize); |
- |
- // Check the properties of the sub function. |
- var sub = assertFunction(module, "sub"); |
- assertEquals(-55, sub(33, 88)); |
- assertEquals(-55555, sub(33333, 88888)); |
- assertEquals(-5555555, sub(3333333, 8888888)); |
-})(); |
- |
(function SubTest() { |
var builder = new WasmModuleBuilder(); |