 Chromium Code Reviews
 Chromium Code Reviews Issue 1597163002:
  wasm: change the module memory size to be multiples of the page size, 64k.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master
    
  
    Issue 1597163002:
  wasm: change the module memory size to be multiples of the page size, 64k.  (Closed) 
  Base URL: https://chromium.googlesource.com/v8/v8.git@master| Index: test/mjsunit/wasm/ffi-error.js | 
| diff --git a/test/mjsunit/wasm/ffi-error.js b/test/mjsunit/wasm/ffi-error.js | 
| index ed6aa2542810fa7dc804fcc1e88f1e13d3b677fe..6aff071102687a830203d1fde21dc0982c3ef268 100644 | 
| --- a/test/mjsunit/wasm/ffi-error.js | 
| +++ b/test/mjsunit/wasm/ffi-error.js | 
| @@ -13,7 +13,7 @@ function testCallFFI(ffi) { | 
| var data = bytesWithHeader( | 
| kDeclMemory, | 
| - 12, 12, 1, // memory | 
| + 1, 1, 1, // memory | 
| // -- signatures | 
| kDeclSignatures, 1, | 
| 2, kAstI32, kAstF64, kAstF64, // (f64,f64)->int |