diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2002-03-21 17:24:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-21 18:19:53 +0000 |
commit | 9ede5bc8744780ab88b609ed37e363bd7732ba2e (patch) | |
tree | b9073fe5603df848bc72880f3550446d39706668 /sv.h | |
parent | 01b53dac40ffd475c2c1671820aa146af4d23c96 (diff) | |
download | perl-9ede5bc8744780ab88b609ed37e363bd7732ba2e.tar.gz |
-DCRIPPLED_CC RIP
Message-ID: <20020321172440.C13683@fdgroup.com>
p4raw-id: //depot/perl@15397
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -161,7 +161,7 @@ perform the upgrade if necessary. See C<svtype>. nsv; \ }) #else -# if defined(CRIPPLED_CC) || defined(USE_5005THREADS) +# ifdef USE_5005THREADS # if defined(VMS) && defined(__ALPHA) # define SvREFCNT_inc(sv) \ (PL_Sv=(SV*)(sv), (PL_Sv && __ATOMIC_INCREMENT_LONG(&(SvREFCNT(PL_Sv)))), (SV *)PL_Sv) @@ -967,7 +967,7 @@ otherwise. #define sv_utf8_upgrade_nomg(sv) sv_utf8_upgrade_flags(sv, 0) #define sv_catpvn_nomg(dsv, sstr, slen) sv_catpvn_flags(dsv, sstr, slen, 0) -#ifndef CRIPPLED_CC +/* #ifndef CRIPPLED_CC */ /* redefine some things to more efficient inlined versions */ /* Let us hope that bitmaps for UV and IV are the same */ @@ -1131,7 +1131,7 @@ otherwise. # define SvTRUEx(sv) ((PL_Sv = (sv)), SvTRUE(PL_Sv)) #endif /* !USE_5005THREADS */ #endif /* !__GNU__ */ -#endif /* !CRIPPLED_CC */ +/* #endif !CRIPPLED_CC */ /* =for apidoc Am|SV*|newRV_inc|SV* sv |