summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-30 13:36:28 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-30 13:36:28 +0000
commit516a5887ee93ac51c15492c01bb2e52bafd5bfaf (patch)
tree2edd49fae5fcdc2d692fc0d6fe4779a740171b58 /malloc.c
parenta2e20b18d842b4285c1fb6554e5ff55510293193 (diff)
downloadperl-516a5887ee93ac51c15492c01bb2e52bafd5bfaf.tar.gz
Medley of -Wall cleanups from Michael Schwen, Hugo van der Sanden,
and Abhijit Menon-Sen. p4raw-id: //depot/perl@10321
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/malloc.c b/malloc.c
index 0345ef97d0..f73e22dfd4 100644
--- a/malloc.c
+++ b/malloc.c
@@ -1045,7 +1045,9 @@ Perl_malloc(register size_t nbytes)
POW2_OPTIMIZE_ADJUST(nbytes);
nbytes += M_OVERHEAD;
nbytes = (nbytes + 3) &~ 3;
+#if defined(PACK_MALLOC) && !defined(SMALL_BUCKET_VIA_TABLE)
do_shifts:
+#endif
shiftr = (nbytes - 1) >> START_SHIFT;
bucket = START_SHIFTS_BUCKET;
/* apart from this loop, this is O(1) */