summaryrefslogtreecommitdiff
path: root/ghc/includes/TailCalls.h
diff options
context:
space:
mode:
authorsimonmar <unknown>2005-11-18 15:23:09 +0000
committersimonmar <unknown>2005-11-18 15:23:09 +0000
commit6c17d627e08e03f2b107bb9ab5d9259c7739c0d6 (patch)
tree3f0b5b37fdc9fbcd15dac96879b5439106c934ba /ghc/includes/TailCalls.h
parentcbd29e0a23bb8e15033edae123d6c8fbe9740c97 (diff)
downloadhaskell-6c17d627e08e03f2b107bb9ab5d9259c7739c0d6.tar.gz
[project @ 2005-11-18 15:23:09 by simonmar]
cosmetic
Diffstat (limited to 'ghc/includes/TailCalls.h')
-rw-r--r--ghc/includes/TailCalls.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ghc/includes/TailCalls.h b/ghc/includes/TailCalls.h
index f62b10e82a..53db254b66 100644
--- a/ghc/includes/TailCalls.h
+++ b/ghc/includes/TailCalls.h
@@ -87,10 +87,8 @@ extern void __DISCARD__(void);
#define JMP_(cont) \
{ \
- void *__target; \
__DISCARD__(); \
- __target = (void *)(cont); \
- goto *__target; \
+ goto *(void *)(cont); \
}
#endif /* x86_64_HOST_ARCH */