Author: Whiteknight
Date: Mon Jul 21 18:50:19 2008
New Revision: 29665

Modified:
   branches/gsoc_pdd09/src/gc/gc_it.c

Log:
[gsoc_pdd09] Make GC_finish_FLAG consistent with the other flags.

Modified: branches/gsoc_pdd09/src/gc/gc_it.c
==============================================================================
--- branches/gsoc_pdd09/src/gc/gc_it.c  (original)
+++ branches/gsoc_pdd09/src/gc/gc_it.c  Mon Jul 21 18:50:19 2008
@@ -243,9 +243,10 @@
     const UINTVAL gc_stack = flags & GC_trace_stack_FLAG;
     const UINTVAL gc_lazy  = flags & GC_lazy_FLAG;
     const UINTVAL gc_volatile = flags & GC_no_trace_volatile_roots;
+    const UINTVAL gc_finish = flags & GC_finish_FLAG;
 
 
-    if (flags & GC_finish_FLAG) {
+    if (gc_finish) {
 
 #  if GC_IT_DEBUG
         fprintf(stderr, "Finalizing GC system\n");

Reply via email to