pop2 : discard top two words on stack : index : visitInsn()

Description
Removes two single-word items from the stack (e.g. two integers, or an integer and an object reference) or one two-word item (i.e. a double or a long).
Example
invokemethod Myclass/foo()D    ; call double Myclass.foo();
pop2                           ; discard the double result
See also
pop
Stack
Before After
item1 ...
item2 ...
... ...
Bytecode
Type Description
u1 pop2 opcode = 0x58 (88)