Skip to content

Commit dd8ed06

Browse files
author
Daniel Kroening
authored
Merge pull request #1034 from diffblue/smowton/fix/sipush_return_type
Fix sipush return type annotation
2 parents c897e06 + 167636f commit dd8ed06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java_bytecode/bytecode_info.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ struct bytecode_infot const bytecode_info[]=
212212
{ "return", 0xb1, ' ', 0, 0, ' ' }, // → [empty]; return void from method NOLINT(*)
213213
{ "saload", 0x35, ' ', 2, 1, 's' }, // arrayref, index → value; load short from array NOLINT(*)
214214
{ "sastore", 0x56, ' ', 3, 0, 's' }, // arrayref, index, value →; store short to array NOLINT(*)
215-
{ "sipush", 0x11, 's', 0, 1, 's' }, // → value; push a short onto the stack NOLINT(*)
215+
{ "sipush", 0x11, 's', 0, 1, 'i' }, // → value; push a short onto the stack as an integer value NOLINT(*)
216216
{ "swap", 0x5f, ' ', 2, 2, ' ' }, // value2, value1 → value1, value2; swaps two top words on the stack (note that value1 and value2 must not be double or long) NOLINT(*)
217217
{ "tableswitch", 0xaa, 'T', 1, 0, ' ' }, // index →; continue execution from an address in the table at offset index NOLINT(*)
218218
{ "breakpoint", 0xca, ' ', 0, 0, ' ' }, // ; reserved for breakpoints in Java debuggers; should not appear in any class file NOLINT(*)

0 commit comments

Comments
 (0)