summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
authorAnonymous <65428781+00ff0000red@users.noreply.github.com>2021-01-07 07:50:57 -0800
committerGitHub <noreply@github.com>2021-01-07 10:50:57 -0500
commitb40d5e5e0b44187737651d155d2e67fcc26f14e8 (patch)
treeda9e3adfb0c59ee8f800ca429465981fd939c273 /core/runtime.rs
parent9b3338fa2f61060ed92abe850fbd31170006217e (diff)
ignore "use asm" (#9019)
Preventing V8 from logging erroneous line numbers. Use wasm.
Diffstat (limited to 'core/runtime.rs')
-rw-r--r--core/runtime.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index 7e8ac48fa..700d378b1 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -158,6 +158,7 @@ pub unsafe fn v8_init() {
"--wasm-test-streaming".to_string(),
"--no-wasm-async-compilation".to_string(),
"--harmony-top-level-await".to_string(),
+ "--no-validate-asm".to_string(),
];
v8::V8::set_flags_from_command_line(argv);
}