summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dyn_load.c2
-rw-r--r--new_hblk.c8
-rw-r--r--typd_mlc.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/dyn_load.c b/dyn_load.c
index 8b0ee621..60707364 100644
--- a/dyn_load.c
+++ b/dyn_load.c
@@ -847,7 +847,7 @@ GC_INNER void GC_register_dynamic_libraries(void)
ABORT_ARG3("/proc PIOCMAP ioctl failed",
": errcode= %d, needed_sz= %d, addr_map= %p",
errno, needed_sz, (void *)addr_map);
- };
+ }
if (GC_n_heap_sects > 0) {
heap_end = GC_heap_sects[GC_n_heap_sects-1].hs_start
+ GC_heap_sects[GC_n_heap_sects-1].hs_bytes;
diff --git a/new_hblk.c b/new_hblk.c
index 3e59c020..5ca23817 100644
--- a/new_hblk.c
+++ b/new_hblk.c
@@ -42,7 +42,7 @@
p[1] = 0;
p[2] = (word)p;
p[3] = 0;
- };
+ }
return((ptr_t)(p-2));
}
@@ -62,7 +62,7 @@
p[0] = (word)(p-4);
p[1] = 0;
CLEAR_DOUBLE(p+2);
- };
+ }
return((ptr_t)(p-4));
}
@@ -78,7 +78,7 @@
for (; (word)p < (word)lim; p += 4) {
p[0] = (word)(p-2);
p[2] = (word)p;
- };
+ }
return((ptr_t)(p-2));
}
@@ -95,7 +95,7 @@
GC_PREFETCH_FOR_WRITE((ptr_t)(p + 64));
p[0] = (word)(p-4);
p[4] = (word)p;
- };
+ }
return((ptr_t)(p-4));
}
#endif /* !SMALL_CONFIG */
diff --git a/typd_mlc.c b/typd_mlc.c
index bb7600ba..5bd50fdf 100644
--- a/typd_mlc.c
+++ b/typd_mlc.c
@@ -168,7 +168,7 @@ STATIC GC_descr GC_double_descr(GC_descr descriptor, word nwords)
{
if ((descriptor & GC_DS_TAGS) == GC_DS_LENGTH) {
descriptor = GC_bm_table[BYTES_TO_WORDS((word)descriptor)];
- };
+ }
descriptor |= (descriptor & ~GC_DS_TAGS) >> nwords;
return(descriptor);
}