Index: src/wasm/wasm-js.cc |
diff --git a/src/wasm/wasm-js.cc b/src/wasm/wasm-js.cc |
index d85e3da412f9d559de8e277cb6864d5da1b3771f..d12bdc9eaeb4eeb30c87174a5666ac5b5002c54f 100644 |
--- a/src/wasm/wasm-js.cc |
+++ b/src/wasm/wasm-js.cc |
@@ -149,10 +149,10 @@ v8::internal::wasm::ZoneBuffer* TranslateAsmModule( |
info->set_literal( |
info->scope()->declarations()->at(0)->AsFunctionDeclaration()->fun()); |
- v8::internal::AsmTyper typer(info->isolate(), info->zone(), *(info->script()), |
- info->literal()); |
+ v8::internal::wasm::AsmTyper typer(info->isolate(), info->zone(), |
+ *(info->script()), info->literal()); |
if (i::FLAG_enable_simd_asmjs) { |
- typer.set_allow_simd(true); |
+ // TODO(jpp): no support. |
bradnelson
2016/07/13 17:05:30
Just drop it.
John
2016/07/13 18:13:03
Done.
|
} |
if (!typer.Validate()) { |
thrower->Error("Asm.js validation failed: %s", typer.error_message()); |