From 4de89387828380532a2b2b6528548e3b6fb944bc Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 6 Jan 2003 13:11:26 +0000 Subject: [PATCH] [project @ 2003-01-06 13:11:26 by simonmar] Prefix a double-underscore to a variable in a macro, to avoid conflicts. --- ghc/includes/TailCalls.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ghc/includes/TailCalls.h b/ghc/includes/TailCalls.h index 1e52be5..1f562eb 100644 --- a/ghc/includes/TailCalls.h +++ b/ghc/includes/TailCalls.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: TailCalls.h,v 1.11 2002/08/21 22:06:03 ken Exp $ + * $Id: TailCalls.h,v 1.12 2003/01/06 13:11:26 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -51,10 +51,10 @@ extern void __DISCARD__(void); #define JMP_(cont) \ { \ - void *target; \ + void *__target; \ __DISCARD__(); \ - target = (void *)(cont); \ - goto *target; \ + __target = (void *)(cont); \ + goto *__target; \ } #endif /* i386_TARGET_ARCH */ -- 1.7.10.4