summaryrefslogtreecommitdiff
path: root/rts/Schedule.c
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-03-19 15:06:05 +0000
committerIan Lynagh <igloo@earth.li>2012-03-19 15:06:05 +0000
commita3dc885bd1e13ef4951b8e36feb5258677b963d4 (patch)
treeedc303af0822afdb3ed8242a9a2519dac91978d4 /rts/Schedule.c
parent6260064eb5cb05778e2b66d556154e2045e89bf2 (diff)
downloadhaskell-a3dc885bd1e13ef4951b8e36feb5258677b963d4.tar.gz
Use win32AllocStack on Win64 too
Diffstat (limited to 'rts/Schedule.c')
-rw-r--r--rts/Schedule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Schedule.c b/rts/Schedule.c
index aa22e06bd9..7dca76438b 100644
--- a/rts/Schedule.c
+++ b/rts/Schedule.c
@@ -611,7 +611,7 @@ schedulePreLoop(void)
{
// initialisation for scheduler - what cannot go into initScheduler()
-#if defined(mingw32_HOST_OS) && defined(i386_HOST_ARCH) && !defined(GhcUnregisterised)
+#if defined(mingw32_HOST_OS) && !defined(GhcUnregisterised)
win32AllocStack();
#endif
}