This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
In Perl_ck_subr(), move to once place all setting of bits in o->op_private.
authorNicholas Clark <nick@ccl4.org>
Mon, 13 Sep 2010 14:32:05 +0000 (15:32 +0100)
committerNicholas Clark <nick@ccl4.org>
Mon, 13 Sep 2010 14:36:07 +0000 (15:36 +0100)
commit9d88f05803089a7481b7fb4bef25d1e082b9803c
treea32cf97d1475dec682ea3a2ec1cd4b0da72b380e
parent747350425d95672eb231bba3c24c254327448b4d
In Perl_ck_subr(), move to once place all setting of bits in o->op_private.

The later conditional setting of HINT_STRICT_REFS and of OPpENTERSUB_DB are
unaffected by any code triggered by cvop->op_type. Moving them together lets
the C compiler produce better code.
op.c