diff options
author | Karl Williamson <khw@cpan.org> | 2016-03-11 16:22:49 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-03-17 21:31:03 -0600 |
commit | fea1d2dd5d210564d442a09fe034b62f262f35f9 (patch) | |
tree | f6ce46c0c616f6e619a2e038777768398e070c2a /proto.h | |
parent | d708a1fbecea9996703282b58186c8bb4e429663 (diff) | |
download | perl-fea1d2dd5d210564d442a09fe034b62f262f35f9.tar.gz |
Make instr() a macro
... thus avoiding a function call overhead
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1244,9 +1244,9 @@ PERL_CALLCONV void Perl_init_stacks(pTHX); PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm); #define PERL_ARGS_ASSERT_INIT_TM \ assert(ptm) -PERL_CALLCONV char* Perl_instr(const char* big, const char* little) +/* PERL_CALLCONV char* Perl_instr(const char* big, const char* little) __attribute__warn_unused_result__ - __attribute__pure__; + __attribute__pure__; */ #define PERL_ARGS_ASSERT_INSTR \ assert(big); assert(little) |