diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-12-01 11:06:05 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-12-01 11:06:05 +0000 |
commit | da8315f8f4d9d4df8cbebe108ef0ddb4795856d7 (patch) | |
tree | 7d03677f2b5fc5934f812f6d7c1c68a019ac983d /scope.h | |
parent | 601cee3b44d5dc2533c9ca9da3e2820c4464c2af (diff) | |
download | perl-da8315f8f4d9d4df8cbebe108ef0ddb4795856d7.tar.gz |
Move the implmentation of SAVEHINTS() into a new Perl_save_hints() in
scope.c. "Inlined" macro functions in scope.h are actually space
inefficient.
p4raw-id: //depot/perl@34965
Diffstat (limited to 'scope.h')
-rw-r--r-- | scope.h | 17 |
1 files changed, 1 insertions, 16 deletions
@@ -157,22 +157,7 @@ Closing bracket on a callback. See C<ENTER> and L<perlcall>. #define SAVEOP() save_op() -#define SAVEHINTS() \ - STMT_START { \ - if (PL_compiling.cop_hints_hash) { \ - HINTS_REFCNT_LOCK; \ - PL_compiling.cop_hints_hash->refcounted_he_refcnt++; \ - HINTS_REFCNT_UNLOCK; \ - } \ - SSCHECK(4); \ - if (PL_hints & HINT_LOCALIZE_HH) { \ - SSPUSHPTR(GvHV(PL_hintgv)); \ - GvHV(PL_hintgv) = Perl_hv_copy_hints_hv(aTHX_ GvHV(PL_hintgv)); \ - } \ - SSPUSHINT(PL_hints); \ - SSPUSHPTR(PL_compiling.cop_hints_hash); \ - SSPUSHINT(SAVEt_HINTS); \ - } STMT_END +#define SAVEHINTS() save_hints() #define SAVECOMPPAD() save_pushptr(MUTABLE_SV(PL_comppad), SAVEt_COMPPAD) |