diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-13 11:41:36 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-13 11:41:36 +0100 |
commit | 26c7b074d5d3f0a79fab5f1c4eb28f38e81b88d2 (patch) | |
tree | 7c097647e44e1b39f6ae15c9c9d15f3673e478d9 /util.c | |
parent | ad287e37d27b33d67ab22c0c8a7294f1eb467342 (diff) | |
download | perl-26c7b074d5d3f0a79fab5f1c4eb28f38e81b88d2.tar.gz |
Migrate common code in Perl_ckwarn() and Perl_ckwarn_d() to S_ckwarn_common()
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 24 |
1 files changed, 9 insertions, 15 deletions
@@ -1602,21 +1602,7 @@ Perl_ckwarn(pTHX_ U32 w) if (isLEXWARN_off) return PL_dowarn & G_WARN_ON; - if (PL_curcop->cop_warnings == pWARN_ALL) - return TRUE; - - if (PL_curcop->cop_warnings == pWARN_NONE) - return FALSE; - - /* Right, dealt with all the special cases, which are implemented as non- - pointers, so there is a pointer to a real warnings mask. */ - return isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)) - || (unpackWARN2(w) && - isWARN_on(PL_curcop->cop_warnings, unpackWARN2(w))) - || (unpackWARN3(w) && - isWARN_on(PL_curcop->cop_warnings, unpackWARN3(w))) - || (unpackWARN4(w) && - isWARN_on(PL_curcop->cop_warnings, unpackWARN4(w))); + return ckwarn_common(w); } /* implements the ckWARN?_d macro */ @@ -1629,12 +1615,20 @@ Perl_ckwarn_d(pTHX_ U32 w) if (isLEXWARN_off) return TRUE; + return ckwarn_common(w); +} + +static bool +S_ckwarn_common(pTHX_ U32 w) +{ if (PL_curcop->cop_warnings == pWARN_ALL) return TRUE; if (PL_curcop->cop_warnings == pWARN_NONE) return FALSE; + /* Right, dealt with all the special cases, which are implemented as non- + pointers, so there is a pointer to a real warnings mask. */ return isWARN_on(PL_curcop->cop_warnings, unpackWARN1(w)) || (unpackWARN2(w) && isWARN_on(PL_curcop->cop_warnings, unpackWARN2(w))) |