diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-07-02 13:07:26 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-07-02 13:07:26 +0000 |
commit | 77354fb48907e3618a62531aa2e90772ef4375d9 (patch) | |
tree | e0d266e831c4ff7e4dd2ce0c7429e0e44744e193 /embed.h | |
parent | 9320a0378277d341c9c126313f5ba5a16b26450d (diff) | |
download | perl-77354fb48907e3618a62531aa2e90772ef4375d9.tar.gz |
Don't inline offer_nice_chunk, as it's rarely called.
p4raw-id: //depot/perl@25047
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1640,6 +1640,9 @@ #ifdef PERL_DONT_CREATE_GVSV #define gv_SVadd Perl_gv_SVadd #endif +#ifdef PERL_CORE +#define offer_nice_chunk Perl_offer_nice_chunk +#endif #define ck_anoncode Perl_ck_anoncode #define ck_bitop Perl_ck_bitop #define ck_concat Perl_ck_concat @@ -3615,6 +3618,9 @@ #ifdef PERL_DONT_CREATE_GVSV #define gv_SVadd(a) Perl_gv_SVadd(aTHX_ a) #endif +#ifdef PERL_CORE +#define offer_nice_chunk(a,b) Perl_offer_nice_chunk(aTHX_ a,b) +#endif #define ck_anoncode(a) Perl_ck_anoncode(aTHX_ a) #define ck_bitop(a) Perl_ck_bitop(aTHX_ a) #define ck_concat(a) Perl_ck_concat(aTHX_ a) |