LOADK
instruction right after LOADKX
instead of an auxiliary parameter
#1206
Labels
bug
Something isn't working
By compiling the following code with optimization level 0:
you will get the bytecode:
notice the instruction:
0x41, 0x00, 0x00, 0x00
(0x41 isLOADKX
)the next instruction is:
0x05, 0x00, 0x00, 0x00
(0x5 isLOADK
)but according to comments in
Bytecode.h
, there should be an auxiliary parameter right afterLOADKX
, what am I missing here? is this a bug?The text was updated successfully, but these errors were encountered: