161162163164165166167168169170171
} if (stmt instanceof ImcLABEL) { return null; } if (stmt instanceof ImcMOVE) { ImcMOVE move = (ImcMOVE)stmt; if (move.dst instanceof ImcTEMP) { ImcTEMP dst = (ImcTEMP)move.dst; Integer src = execExpr(move.src); ST(dst.temp, src); return null;