From: simonmar Date: Mon, 6 Jan 2003 13:11:26 +0000 (+0000) Subject: [project @ 2003-01-06 13:11:26 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~1308 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=4de89387828380532a2b2b6528548e3b6fb944bc;p=ghc-hetmet.git [project @ 2003-01-06 13:11:26 by simonmar] Prefix a double-underscore to a variable in a macro, to avoid conflicts. --- 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 */