diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-03-24 16:13:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 16:13:53 -0700 |
commit | e7315448c95d248fb1bcdb869a39da30974f73ea (patch) | |
tree | 9154dfcf527d6ed8f441ed701e51cf017786bacd /src | |
parent | 18fcad6df1edb3589759018da172c03414cfc561 (diff) | |
download | binaryen-e7315448c95d248fb1bcdb869a39da30974f73ea.tar.gz binaryen-e7315448c95d248fb1bcdb869a39da30974f73ea.tar.bz2 binaryen-e7315448c95d248fb1bcdb869a39da30974f73ea.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm/wasm-binary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |