Skip to content

Commit

Permalink
Add missing Integer operand to IR serialization read
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Jan 22, 2024
1 parent bf7481c commit 4f149b2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@ public Operand decode(OperandType type) {
case GLOBAL_VARIABLE: return GlobalVariable.decode(this);
case HASH: return Hash.decode(this);
case IR_EXCEPTION: return IRException.decode(this);
case INTEGER: return org.jruby.ir.operands.Integer.decode(this);
case LABEL: return Label.decode(this);
case LOCAL_VARIABLE: return LocalVariable.decode(this);
case NIL: return manager.getNil();
Expand Down

0 comments on commit 4f149b2

Please sign in to comment.