diff options
author | Jim Cromie <jcromie@cpan.org> | 2008-02-10 05:52:59 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-02-25 08:02:50 +0000 |
commit | 6ecf81d654dfb4e99b0f99d78579deb3289aae3b (patch) | |
tree | abb87fe3ab127dd5b0bf97f385955e374cf1e31d /op.c | |
parent | c13076132a20419dab956060b96f9d3ef3b25ad7 (diff) | |
download | perl-6ecf81d654dfb4e99b0f99d78579deb3289aae3b.tar.gz |
Re: [patch] optimize OP_IS_(FILETEST|SOCKET) macros
From: "Jim Cromie" <jim.cromie@gmail.com>
Message-ID: <cfe85dfa0802101152n4e1b9e07pc7fb7ad9241a9794@mail.gmail.com>
p4raw-id: //depot/perl@33364
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6683,7 +6683,7 @@ Perl_ck_ftst(pTHX_ OP *o) #endif return newop; } - if ((PL_hints & HINT_FILETEST_ACCESS) && OP_IS_FILETEST_ACCESS(o)) + if ((PL_hints & HINT_FILETEST_ACCESS) && OP_IS_FILETEST_ACCESS(o->op_type)) o->op_private |= OPpFT_ACCESS; if (PL_check[kidtype] == MEMBER_TO_FPTR(Perl_ck_ftst) && kidtype != OP_STAT && kidtype != OP_LSTAT) |