From cc1cd86b05ab1b58a64128c8129d4b1fbd0e414d Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Thu, 19 Jul 2001 17:34:37 +0000 Subject: [PATCH] * gc_os_dep.c (GC_noop1): ifdef out (unused) to quiet warning. --- libguile/gc_os_dep.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libguile/gc_os_dep.c b/libguile/gc_os_dep.c index d05105a63..ab392729d 100644 --- a/libguile/gc_os_dep.c +++ b/libguile/gc_os_dep.c @@ -62,8 +62,11 @@ typedef int GC_bool; # 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) +static void +GC_noop1(x) word x; { static VOLATILE word sink; @@ -71,6 +74,8 @@ word x; sink = x; } +#endif + /* Machine dependent parameters. Some tuning parameters can be found */ /* near the top of gc_private.h. */