Ejemplo n.º 1
0
 @Override
 public void postprocess() {
   if (anchor != null && OptEliminateGuards.getValue()) {
     for (GuardNode guard : anchor.asNode().usages().filter(GuardNode.class)) {
       if (activeGuards.isMarkedAndGrow(guard)) {
         activeGuards.clear(guard);
       }
     }
   }
 }