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 | 3cd7e62cc994e41c760d98d07cd21fee32b77779 (patch) | |
tree | e10b3f1216e6189914de2cabd40f9ea8f7627a71 /op.h | |
parent | 2a07d337e2c09a43d144f6e3e99e04d45a320f23 (diff) | |
download | perl-3cd7e62cc994e41c760d98d07cd21fee32b77779.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 */ |