guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile gc_os_dep.c


From: Marius Vollmer
Subject: guile/guile-core/libguile gc_os_dep.c
Date: Thu, 26 Jul 2001 09:58:31 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/07/26 09:58:30

Modified files:
        guile-core/libguile: gc_os_dep.c 

Log message:
        (GC_noop1): Moved into the same #if/#endif context where it is needed.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/gc_os_dep.c.diff?cvsroot=OldCVS&tr1=1.9&tr2=1.10&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/gc_os_dep.c
diff -u guile/guile-core/libguile/gc_os_dep.c:1.9 
guile/guile-core/libguile/gc_os_dep.c:1.10
--- guile/guile-core/libguile/gc_os_dep.c:1.9   Thu Jul 19 14:08:49 2001
+++ guile/guile-core/libguile/gc_os_dep.c       Thu Jul 26 09:58:30 2001
@@ -62,20 +62,6 @@
 #   define VOLATILE
 #endif
 
-#if 0 /* currently unused (as of 2001-07-12) */
-
-/* Single argument version, robust against whole program analysis. */
-static void
-GC_noop1(x)
-word x;
-{
-    static VOLATILE word sink;
-
-    sink = x;
-}
-
-#endif
-
 /* Machine dependent parameters.  Some tuning parameters can be found  */
 /* near the top of gc_private.h.                                       */
 
@@ -1773,6 +1759,16 @@
        }
        return(result);
     }
+
+    /* Single argument version, robust against whole program analysis. */
+    static void
+    GC_noop1(x)
+    word x;
+    {
+      static VOLATILE word sink;
+      sink = x;
+    }
+
 # endif
 
 #ifdef LINUX_STACKBOTTOM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]