From 74c05fae75e32cd8edab8df16e0405f207351198 Mon Sep 17 00:00:00 2001 From: njn Date: Tue, 9 Apr 2002 11:00:11 +0000 Subject: [PATCH] [project @ 2002-04-09 11:00:11 by njn] Removed the unnecessary arg from TICK_ENT_{STATIC,DYN}_THK macros in the "#ifdef TICKY_TICKY" case. This meant the libraries would not compile with way=t for SimonPJ even though they did for me... --- ghc/includes/StgTicky.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/includes/StgTicky.h b/ghc/includes/StgTicky.h index 77467cf..fdef668 100644 --- a/ghc/includes/StgTicky.h +++ b/ghc/includes/StgTicky.h @@ -1,5 +1,5 @@ /* ---------------------------------------------------------------------------- - * $Id: StgTicky.h,v 1.11 2002/02/14 11:56:04 njn Exp $ + * $Id: StgTicky.h,v 1.12 2002/04/09 11:00:11 njn Exp $ * * (c) The AQUA project, Glasgow University, 1994-1997 * (c) The GHC Team, 1998-1999 @@ -135,8 +135,8 @@ #define TICK_ENT_VIA_NODE() ENT_VIA_NODE_ctr++ -#define TICK_ENT_STATIC_THK(n) ENT_STATIC_THK_ctr++ -#define TICK_ENT_DYN_THK(n) ENT_DYN_THK_ctr++ +#define TICK_ENT_STATIC_THK() ENT_STATIC_THK_ctr++ +#define TICK_ENT_DYN_THK() ENT_DYN_THK_ctr++ typedef struct _StgEntCounter { unsigned registeredp:16, /* 0 == no, 1 == yes */ -- 1.7.10.4