From: Vincent Pit Date: Tue, 4 Jan 2011 18:10:07 +0000 (+0100) Subject: Always skip seen ops in our peep replacement X-Git-Tag: rt64435^0 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=6bc99454a8284978b14854642fac0123c77bac45;hp=6bc99454a8284978b14854642fac0123c77bac45;p=perl%2Fmodules%2Fautovivification.git Always skip seen ops in our peep replacement Sometimes, there are loops in the next chain as e.g. with infinite loops like "for (;;) { ... }". We can't reuse the op_opt member because it's almost always set after the first pass. This fixes RT #64435. ---