diff options
author | Heejin Ahn <aheejin@gmail.com> | 2020-03-25 10:02:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 10:02:42 -0700 |
commit | d8771ed54edc85ee71e69b835cdaab57bd2722f4 (patch) | |
tree | 7d0d31e411b9327513828cfaaade8850c0bf1115 /src/binary.h | |
parent | 7898e57f28c89565b99e894e764e058346e28fbe (diff) | |
download | wabt-d8771ed54edc85ee71e69b835cdaab57bd2722f4.tar.gz wabt-d8771ed54edc85ee71e69b835cdaab57bd2722f4.tar.bz2 wabt-d8771ed54edc85ee71e69b835cdaab57bd2722f4.zip |
Move event section before global section (#1374)
We decided move the event section before the global section in
WebAssembly/exception-handling#98.
Diffstat (limited to 'src/binary.h')
-rw-r--r-- | src/binary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary.h b/src/binary.h index 01c9b95a..a1fc555f 100644 --- a/src/binary.h +++ b/src/binary.h @@ -36,8 +36,8 @@ V(Function, function, 3) \ V(Table, table, 4) \ V(Memory, memory, 5) \ - V(Global, global, 6) \ V(Event, event, 13) \ + V(Global, global, 6) \ V(Export, export, 7) \ V(Start, start, 8) \ V(Elem, elem, 9) \ |