| Index: test/mjsunit/wasm/export-table.js | 
| diff --git a/test/mjsunit/wasm/export-table.js b/test/mjsunit/wasm/export-table.js | 
| index 89e0b4436dd5e8764b80de79bff599395a8c6bb9..6d21cf579036761f8e5d545140788ccc9bdfdee9 100644 | 
| --- a/test/mjsunit/wasm/export-table.js | 
| +++ b/test/mjsunit/wasm/export-table.js | 
| @@ -11,7 +11,7 @@ | 
| var kReturnValue = 88; | 
| var builder = new WasmModuleBuilder(); | 
|  | 
| -  builder.addFunction("main", kSig_i_v) | 
| +  builder.addFunction("main", kSig_i) | 
| .addBody([ | 
| kExprI8Const, | 
| kReturnValue, | 
| @@ -32,7 +32,7 @@ | 
|  | 
| var builder = new WasmModuleBuilder(); | 
|  | 
| -  builder.addFunction("main", kSig_i_v) | 
| +  builder.addFunction("main", kSig_i) | 
| .addBody([ | 
| kExprI8Const, | 
| kReturnValue, | 
| @@ -57,7 +57,7 @@ | 
|  | 
| var builder = new WasmModuleBuilder(); | 
|  | 
| -  builder.addFunction("main", kSig_i_v) | 
| +  builder.addFunction("main", kSig_i) | 
| .addBody([ | 
| kExprI8Const, | 
| kReturnValue, | 
|  |