This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
PATCH: GH #17081: Workaround glibc bug with LC_MESSAGES
[perl5.git] / pp.c
diff --git a/pp.c b/pp.c
index bc08a0e..9a06fcc 100644 (file)
--- a/pp.c
+++ b/pp.c
@@ -2549,7 +2549,6 @@ S_scomplement(pTHX_ SV *targ, SV *sv)
 
        anum = len;
 
-#ifdef LIBERAL
        {
            long *tmpl;
            for ( ; anum && PTR2nat(tmps) % sizeof(long); anum--, tmps++)
@@ -2559,7 +2558,7 @@ S_scomplement(pTHX_ SV *targ, SV *sv)
                *tmpl = ~*tmpl;
            tmps = (U8*)tmpl;
        }
-#endif
+
        for ( ; anum > 0; anum--, tmps++)
            *tmps = ~*tmps;
 }