X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=ghc%2Fincludes%2FTailCalls.h;h=1f562ebc83fcf9103d78ab98e3409b9ace267e4b;hb=59940493f000b3542a93d71e925d37a3f61b2f1a;hp=1e52be53d61873e41eab685e50dabcb03919dda9;hpb=5c553db9d741134647ed8e70aa4e4b447ca0dbe0;p=ghc-hetmet.git 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 */