This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
op.c:op_free: Rmv dead code; simplify cop_free logic
authorFather Chrysostomos <sprout@cpan.org>
Wed, 25 Jul 2012 23:31:07 +0000 (16:31 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 25 Jul 2012 23:31:07 +0000 (16:31 -0700)
commit513f78f74946f885de1f0b5ed65c1cffa85650b3
treeb5f50d8b43e21d245bc682f102ccd02d13e76e13
parent4a74e76e73e572730d22e6798970f5981a893f48
op.c:op_free: Rmv dead code; simplify cop_free logic

This reverts c53f1caa and cc93af5f.

See the thread starting at
http://www.nntp.perl.org/group/perl.perl5.porters/2008/04/msg135885.html

Basically, change c53f1caa made a change, but then cc93af5f undid it,
but differently.  This resulted in dead code left by c53f1caa (type is
unused after the assignment).  And in the end the code behaved exactly
the same way, so the original problem was not fixed.  I suspect this
was a B::C bug.
op.c