if_icmple : jump if one integer is less than or equal to another : index : visitJumpInsn()
iload_1 ; push the int value in local variable 1 onto the stack bipush 2 ; push the int 2 onto the stack if_icmple Label ; if the value of local variable 1 is <= 2, jump to Label return ; return if local variable 1 is greater than 2 Label: ; execution continues here if local variable 1 is less than or equal to 2...
Before | After |
value1 | ... |
value2 | ... |
... |
Type | Description |
u1 | if_icmple opcode = 0xA4 (164) |
s2 | branchoffset |