diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-08-21 16:41:30 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-08-21 16:44:51 +0100 |
commit | 6d3fb1b1efee263f07da47693147990e8443ab1d (patch) | |
tree | f61678c3b8da7ad81a3c8a110e52305cf821b7fc /compiler/codeGen/CgUtils.hs | |
parent | d4ac7d8160b3533c7d0a2377b5442038f69486a8 (diff) | |
download | haskell-6d3fb1b1efee263f07da47693147990e8443ab1d.tar.gz |
Fix the generation of CallerSaves; fixes #7163
Simon Marlow spotted that we were #include'ing MachRegs.h several times,
but that doesn't work as (a) it uses ifdeffery to avoid being included
multiple times, and (b) even if we work around that, then the #define's
from previous inclusions are still defined when we #include it again.
So we now put the platform code for each platform in a separate .hs file.
Diffstat (limited to 'compiler/codeGen/CgUtils.hs')
-rw-r--r-- | compiler/codeGen/CgUtils.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/CgUtils.hs b/compiler/codeGen/CgUtils.hs index d64aaa87e3..b488f16299 100644 --- a/compiler/codeGen/CgUtils.hs +++ b/compiler/codeGen/CgUtils.hs @@ -48,7 +48,7 @@ module CgUtils ( #include "../includes/stg/HaskellMachRegs.h" import BlockId -import CallerSaves +import CodeGen.CallerSaves import CgMonad import TyCon import DataCon |