On Fri, 11 Jan 2002, Gopal Rajaraman wrote:
> There seems to be a typo in either pmc.h or parrotpointer.pmc
>
> pmc.h has:
> PMC_private_GC_FLAG = 2 << 12
>
> but parrotpointer.pmc has
> void init () {
> SELF->data=NULL;
> SELF->flags=PMC_private_gc_FLAG; ## you get a compile error at
> this line....
> }
>
> This causes the build to fail.
> Regards,
> - Gopal Rajaraman
>
It's a typo in parrotpointer.pmc. Enclosed patch fixes, parrot now builds
and all tests pass.
Simon
--- parrotpointer.pmc.old Sat Jan 12 02:00:06 2002
+++ parrotpointer.pmc Sat Jan 12 13:24:42 2002
@@ -24,7 +24,7 @@
void init () {
SELF->data=NULL;
- SELF->flags=PMC_private_gc_FLAG;
+ SELF->flags=PMC_private_GC_FLAG;
}
void clone (PMC* dest) {