summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pp.c b/pp.c
index bc08a0eed6..9a06fcc808 100644
--- 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;
}