summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/numeric.c b/numeric.c
index a9f70622de..4936ceff26 100644
--- a/numeric.c
+++ b/numeric.c
@@ -426,42 +426,42 @@ Perl_grok_bin_oct_hex(pTHX_ const char *start,
case 0:
return 0;
default:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 7:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 6:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 5:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 4:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 3:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 2:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
s++;
/* FALLTHROUGH */
case 1:
- if (UNLIKELY(! _generic_isCC(*s, class_bit))) break;
+ if (UNLIKELY(! generic_isCC_(*s, class_bit))) break;
value = (value << shift) | XDIGIT_VALUE(*s);
if (LIKELY(len <= 8)) {
@@ -477,7 +477,7 @@ Perl_grok_bin_oct_hex(pTHX_ const char *start,
len -= bytes_so_far;
for (; len--; s++) {
- if (_generic_isCC(*s, class_bit)) {
+ if (generic_isCC_(*s, class_bit)) {
/* Write it in this wonky order with a goto to attempt to get the
compiler to make the common case integer-only loop pretty tight.
With gcc seems to be much straighter code than old scan_hex.
@@ -527,7 +527,7 @@ Perl_grok_bin_oct_hex(pTHX_ const char *start,
if ( *s == '_'
&& len
&& allow_underscores
- && _generic_isCC(s[1], class_bit)
+ && generic_isCC_(s[1], class_bit)
/* Don't allow a leading underscore if the only-medial bit is
* set */