<div dir="ltr">Hello everybody!<div>I have code:</div><div><br></div><div><div>Local intLocal = Jimple.v().newLocal(&quot;myInt&quot;, IntType.v());</div><div>body.getLocals().add(intLocal);</div></div><div><div>AssignStmt as2 = Jimple.v().newAssignStmt(intLocal, Jimple.v().newAddExpr(intLocal, IntConstant.v(500)));</div><div>units.add(as2);</div></div><div><br></div><div>So I want to increase local variable on 500. </div><div>In byte code after transformation I see:</div><div><br></div><div>iinc_w        #5,  1<br></div><div><br></div><div>Why 1 instead of 500? Where I mistake?</div><div><br></div><div>Thanks for any help.</div><div><br></div><div>Best regards, </div><div>Roman.</div></div>