Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1201)

Unified Diff: src/wasm/module-decoder.cc

Issue 2709753003: [wasm] Remove support for experimental version 0xD. (Closed)
Patch Set: Fix jsapi-harness.js Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/wasm/module-decoder.h ('k') | test/mjsunit/wasm/jsapi-harness.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/module-decoder.cc
diff --git a/src/wasm/module-decoder.cc b/src/wasm/module-decoder.cc
index b7d38cef39aac4bcc04d6d2eff9e252abac6164d..056428639dc85be4a27c9ec26cca09d0e3a7d95f 100644
--- a/src/wasm/module-decoder.cc
+++ b/src/wasm/module-decoder.cc
@@ -272,8 +272,7 @@ class ModuleDecoder : public Decoder {
pos = pc_;
{
uint32_t magic_version = consume_u32("wasm version");
- if (magic_version != kWasmVersion &&
- magic_version != kWasmLegacyVersion) {
+ if (magic_version != kWasmVersion) {
error(pos, pos,
"expected version %02x %02x %02x %02x, "
"found %02x %02x %02x %02x",
« no previous file with comments | « src/wasm/module-decoder.h ('k') | test/mjsunit/wasm/jsapi-harness.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698