diff options
author | Ben Smith <binji@chromium.org> | 2018-03-20 03:00:52 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2018-03-20 03:00:52 -0700 |
commit | 565d0b47c229ce5b29ce685c65839a4aa8f404da (patch) | |
tree | 7e06261d32008de965e4d2317574e24f70ed5854 /src | |
parent | 7badabdac38a7fc7e47a88f11c523ca8b4fd6c1b (diff) | |
download | wabt-565d0b47c229ce5b29ce685c65839a4aa8f404da.tar.gz wabt-565d0b47c229ce5b29ce685c65839a4aa8f404da.tar.bz2 wabt-565d0b47c229ce5b29ce685c65839a4aa8f404da.zip |
Fix typo introduced in the previous commit
Diffstat (limited to 'src')
-rw-r--r-- | src/opcode.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opcode.def b/src/opcode.def index 607547c2..212007cc 100644 --- a/src/opcode.def +++ b/src/opcode.def @@ -217,7 +217,7 @@ WABT_OPCODE(I32, I32, ___, ___, 0, 0, 0xC0, I32Extend8S, "i32.extend8_s" WABT_OPCODE(I32, I32, ___, ___, 0, 0, 0xC1, I32Extend16S, "i32.extend16_s") WABT_OPCODE(I64, I64, ___, ___, 0, 0, 0xC2, I64Extend8S, "i64.extend8_s") WABT_OPCODE(I64, I64, ___, ___, 0, 0, 0xC3, I64Extend16S, "i64.extend16_s") -WABT_OPCODE(I64, I64, ___, ___, 0, 0, 0xC3, I64Extend32S, "i64.extend32_s") +WABT_OPCODE(I64, I64, ___, ___, 0, 0, 0xC4, I64Extend32S, "i64.extend32_s") /* Interpreter-only opcodes */ WABT_OPCODE(___, ___, ___, ___, 0, 0, 0xe0, InterpAlloca, "alloca") |