Skip to content

Commit e731544

Browse files
authored
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.
1 parent 18fcad6 commit e731544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wasm/wasm-binary.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ void WasmBinaryWriter::write() {
5050
writeFunctionSignatures();
5151
writeFunctionTableDeclaration();
5252
writeMemory();
53-
writeGlobals();
5453
writeEvents();
54+
writeGlobals();
5555
writeExports();
5656
writeStart();
5757
writeTableElements();

0 commit comments

Comments
 (0)