diff --git a/ghc/includes/PrimOps.h b/ghc/includes/PrimOps.h index 90c4f22f318ca9514d1e89dd728a143910d13f4e..16643035e3f478b30529980931862b6d404d7588 100644 --- a/ghc/includes/PrimOps.h +++ b/ghc/includes/PrimOps.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: PrimOps.h,v 1.6 1999/01/18 14:36:13 sof Exp $ + * $Id: PrimOps.h,v 1.7 1999/01/19 09:49:55 simonm Exp $ * * Macros for primitive operations in STG-ish C code. * @@ -643,7 +643,6 @@ extern StgPtr *stable_ptr_free; #define freeStablePointer(stable_ptr) \ { \ stable_ptr_table[stable_ptr] = (P_)stable_ptr_free; \ - IF_DEBUG(weak,fprintf(stderr, "Freed stable pointer %d\n", stable_ptr)); \ stable_ptr_free = &stable_ptr_table[stable_ptr]; \ }