summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2014-05-17 17:27:33 +0400
committerIvan Maidanski <ivmai@mail.ru>2014-05-17 17:27:33 +0400
commit1ee8737482065453383d60a111d944a1586a39d3 (patch)
tree81d1d9fe63ae4d7b109b494d171ac33bc361c803
parent80e2d8bd81cc6ddbbc99736848bd5bad250dbfc0 (diff)
parentacf2e57f2091522924a0064b318642253e2b2bac (diff)
downloadbdwgc-1ee8737482065453383d60a111d944a1586a39d3.tar.gz
Merge tag 'gc4_8' into ancient-releases
-rw-r--r--README6
-rw-r--r--mach_dep.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/README b/README
index 0fc7a6b9..663e899b 100644
--- a/README
+++ b/README
@@ -10,7 +10,7 @@ Permission to modify the code and to distribute modified code is granted,
provided the above notices are retained, and a notice that the code was
modified is included with the above copyright notice.
-This is version 4.7 of a conservative garbage collector for C and C++.
+This is version 4.8 of a conservative garbage collector for C and C++.
HISTORY -
@@ -1129,3 +1129,7 @@ Since version 4.6:
- Fixed a serious bug for machines with non-word-aligned pointers.
(Thanks to Patrick Beard for pointing out the problem. The collector
should fail almost any conceivable test immediately on such machines.)
+
+Since version 4.7:
+ - Changed a "comment" in a MacOS specific part of mach-dep.c that caused
+ gcc to fail on other platforms.
diff --git a/mach_dep.c b/mach_dep.c
index fbd8c6c6..c2d22a61 100644
--- a/mach_dep.c
+++ b/mach_dep.c
@@ -35,7 +35,7 @@ asm static void PushMacRegisters()
move.l a4,(sp)
jsr GC_push_one
# if !__option(a6frames)
- // <pcb> perhaps a6 should be pushed if stack frames aren't being used.
+ // <pcb> perhaps a6 should be pushed if stack frames are not being used.
move.l a6,(sp)
jsr GC_push_one
# endif