diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-27 15:36:49 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-27 15:36:49 +0000 |
commit | 392d04bb758cd08529ab92bc6bac169774c64676 (patch) | |
tree | 7f61ac8ff919059013c4f20cde503d04ab3bb634 /proto.h | |
parent | 7a6d04f4b4bf895ed78ad15e738aca75d88e3b8c (diff) | |
download | perl-392d04bb758cd08529ab92bc6bac169774c64676.tar.gz |
newPADOP is only used under ithreads, so don't waste space by compiling
it for non-threaded builds.
p4raw-id: //depot/perl@30032
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1549,10 +1549,12 @@ PERL_CALLCONV OP* Perl_newLISTOP(pTHX_ I32 type, I32 flags, OP* first, OP* last) __attribute__malloc__ __attribute__warn_unused_result__; +#ifdef USE_ITHREADS PERL_CALLCONV OP* Perl_newPADOP(pTHX_ I32 type, I32 flags, SV* sv) __attribute__malloc__ __attribute__warn_unused_result__; +#endif PERL_CALLCONV OP* Perl_newPMOP(pTHX_ I32 type, I32 flags) __attribute__malloc__ __attribute__warn_unused_result__; |