From: Vincent Pit Date: Sat, 26 Feb 2011 19:18:09 +0000 (+0100) Subject: Always skip seen ops in our peep replacement X-Git-Tag: rt66146^0 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=a649807e15b3ab4103dbb51823950c29e7ed9fb4;hp=a649807e15b3ab4103dbb51823950c29e7ed9fb4;p=perl%2Fmodules%2FLexical-Types.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 #66146. ---