summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-03-16 23:17:27 +0000
committerIan Lynagh <igloo@earth.li>2012-03-16 23:17:27 +0000
commite4744cd4bc68127f4af6d9afca5d4deae7255122 (patch)
tree6767c6a8a3cbd25288fd4c3d10cd5e367318a1ef /rts
parent7a60d63582cfb54dac941c0c7bc96343503f4f7e (diff)
downloadhaskell-e4744cd4bc68127f4af6d9afca5d4deae7255122.tar.gz
Another Win64 fix
Diffstat (limited to 'rts')
-rw-r--r--rts/Schedule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Schedule.c b/rts/Schedule.c
index e17116bc07..c22b02d3ee 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)
+#if defined(mingw32_HOST_OS) && defined(i386_HOST_ARCH)
win32AllocStack();
#endif
}