Esempio n. 1
0
 /** Used by BranchInstruction, LocalVariableGen, CodeExceptionGen */
 static final void notifyTarget(
     InstructionHandle old_ih, InstructionHandle new_ih, InstructionTargeter t) {
   if (old_ih != null) old_ih.removeTargeter(t);
   if (new_ih != null) new_ih.addTargeter(t);
 }