diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-23 00:01:29 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-23 00:01:29 +0000 |
commit | 76cd736e66383afee2dc798500e6d884d1cd0922 (patch) | |
tree | e10b3f1216e6189914de2cabd40f9ea8f7627a71 /op.h | |
parent | 921cb7f07252a906fe2594b618ceb15ee9bd370e (diff) | |
download | perl-76cd736e66383afee2dc798500e6d884d1cd0922.tar.gz |
emit warning about function calls that were encountered too early
to enforce their prototype
p4raw-id: //depot/perl@3723
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -127,6 +127,8 @@ typedef U32 PADOFFSET; /* OP_RV2CV only */ #define OPpENTERSUB_AMPER 8 /* Used & form to call. */ #define OPpENTERSUB_NOPAREN 128 /* bare sub call (without parens) */ + /* OP_GV only */ +#define OPpEARLY_CV 32 /* foo() called before sub foo was parsed */ /* OP_?ELEM only */ #define OPpLVAL_DEFER 16 /* Defer creation of array/hash elem */ /* for OP_RV2?V, lower bits carry hints */ |