diff options
author | Alon Zakai <azakai@google.com> | 2021-01-08 16:54:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 08:54:07 -0800 |
commit | b7e4ec5a39b3f0d5a416b50bad2477c60969437f (patch) | |
tree | 57495b014f763c71f134e8eb10657f8d3ad9812c /src | |
parent | 6a35e33f126d80e7583821e584ae9d101ba0ccb5 (diff) | |
download | binaryen-b7e4ec5a39b3f0d5a416b50bad2477c60969437f.tar.gz binaryen-b7e4ec5a39b3f0d5a416b50bad2477c60969437f.tar.bz2 binaryen-b7e4ec5a39b3f0d5a416b50bad2477c60969437f.zip |
[GC] Fix the opcode of i31 (#3471)
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm-binary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index beee4cead..284f81aab 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -373,7 +373,7 @@ enum EncodedHeapType { extern_ = -0x11, // 0x6f any = -0x12, // 0x6e eq = -0x13, // 0x6d - i31 = -0x17, // 0x69, != i31ref + i31 = -0x16, // 0x6a exn = -0x18, // 0x68 }; |