From 8fdb09e2610927c2bd65fca31965893216e4da34 Mon Sep 17 00:00:00 2001 From: "benl@ouroborus.net" Date: Tue, 29 Jun 2010 05:43:21 +0000 Subject: [PATCH] NCG: allocatableRegs is only giving us 8 SSE regs to allocate to --- compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs b/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs index 7c3fbd5..4c05860 100644 --- a/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs +++ b/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs @@ -46,7 +46,7 @@ import FastTypes #define ALLOCATABLE_REGS_INTEGER (_ILIT(3)) #define ALLOCATABLE_REGS_DOUBLE (_ILIT(6)) #define ALLOCATABLE_REGS_FLOAT (_ILIT(0)) -#define ALLOCATABLE_REGS_SSE (_ILIT(16)) +#define ALLOCATABLE_REGS_SSE (_ILIT(8)) #elif x86_64_TARGET_ARCH -- 1.7.10.4