larger(3, 7) の実行過程 (訂正版)

local=[this, 3, 7, ] stack=[]
iload_1
local=[this, 3, 7, ] stack=[3]
iload_2
local=[this, 3, 7, ] stack=[3, 7]
if_icmple Label1 ; 3 <= 7 なので飛ぶ,教科書p.333
local=[this, 3, 7, ] stack=[]
iload_2
local=[this, 3, 7, ] stack=[7]
istore_3
local=[this, 3, 7, 7] stack=[]
iload_3
local=[this, 3, 7, 7] stack=[7]
ireturn