diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-23 17:54:33 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-23 17:54:33 +0000 |
commit | 11010fa3fd72f20a7c4b6e4eca00829b70922352 (patch) | |
tree | ef2b1e981fa0ea89e2a8d4c0c99bbbbd4963b247 /pp.c | |
parent | 2d74ac5a945cbb18a3c980e95584765fe36a2594 (diff) | |
download | perl-11010fa3fd72f20a7c4b6e4eca00829b70922352.tar.gz |
Integrate from maint-5.8:
[ 19045]
If no IVSIZE == 8, no need for modulo_1.
p4raw-link: @19045 on //depot/maint-5.8/perl: 6fcf78978c3c389ee7541e795096814ca241cf2a
p4raw-id: //depot/perl@19047
p4raw-integrated: from //depot/maint-5.8/perl@19044 'merge in' pp.c
(@19029..)
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2472,7 +2472,7 @@ PP(pp_i_modulo_0) } } -#ifdef __GLIBC__ +#if defined(__GLIBC__) && IVSIZE == 8 STATIC PP(pp_i_modulo_1) { |