This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
op.c: Remove a redundant ck_subr call from ck_glob
authorFather Chrysostomos <sprout@cpan.org>
Sun, 29 Apr 2012 06:45:37 +0000 (23:45 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 22 May 2012 04:37:18 +0000 (21:37 -0700)
commit7ae76aaa52e4db029e223ae2ae85632bb2299bf4
tree6156a496aab78453bdc69b0493dd78a51c2950ee
parent213aa87d36f7cebec966c5e70cad7b91ccc7fb01
op.c: Remove a redundant ck_subr call from ck_glob

newUNOP(OP_ENTERSUB, ...) already calls ck_subr, so calling ck_subr on
its return value is unnecessary and wasteful of precious CPU time.
op.c