Skip to content

Commit

Permalink
JACOBIN-590 Minor clean up of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
platypusguy committed Oct 16, 2024
1 parent 1aa15bd commit a85ad38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jvm/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ frameInterpreter:
break
case opcodes.ACONST_NULL: // 0x01 (push null onto opStack)
push(f, object.Null)
case opcodes.ICONST_M1: // x02 (push -1 onto opStack)
case opcodes.ICONST_M1: // 0x02 (push -1 onto opStack)
push(f, int64(-1))
case opcodes.ICONST_0: // 0x03 (push int 0 onto opStack)
push(f, int64(0))
Expand Down Expand Up @@ -212,7 +212,7 @@ frameInterpreter:
case opcodes.DCONST_0: // 0x0E
push(f, 0.0)
push(f, 0.0)
case opcodes.DCONST_1: // 0xoF
case opcodes.DCONST_1: // 0x0F
push(f, 1.0)
push(f, 1.0)
case opcodes.BIPUSH: // 0x10 (push the following byte as an int onto the stack)
Expand Down

0 comments on commit a85ad38

Please sign in to comment.