From e7315448c95d248fb1bcdb869a39da30974f73ea Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Tue, 24 Mar 2020 16:13:53 -0700 Subject: Fix Event section ordering (#2708) The version of V8 pulled in by JSVU recently updated to expect the new ordering of the event section, so this PR should fix the CI. --- src/wasm/wasm-binary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp index dbd644a17..8d9696aa2 100644 --- a/src/wasm/wasm-binary.cpp +++ b/src/wasm/wasm-binary.cpp @@ -50,8 +50,8 @@ void WasmBinaryWriter::write() { writeFunctionSignatures(); writeFunctionTableDeclaration(); writeMemory(); - writeGlobals(); writeEvents(); + writeGlobals(); writeExports(); writeStart(); writeTableElements(); -- cgit v1.2.3