diff options
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/codeGen/CgUtils.hs | 2 | ||||
-rw-r--r-- | compiler/codeGen/StgCmmUtils.hs | 2 | ||||
-rw-r--r-- | compiler/nativeGen/PPC/Regs.hs | 2 | ||||
-rw-r--r-- | compiler/nativeGen/RegAlloc/Linear/Main.hs | 2 | ||||
-rw-r--r-- | compiler/nativeGen/SPARC/RegPlate.hs | 2 | ||||
-rw-r--r-- | compiler/nativeGen/X86/Regs.hs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/compiler/codeGen/CgUtils.hs b/compiler/codeGen/CgUtils.hs index 08b6fb8939..b7acc1c54c 100644 --- a/compiler/codeGen/CgUtils.hs +++ b/compiler/codeGen/CgUtils.hs @@ -45,7 +45,7 @@ module CgUtils ( ) where #include "HsVersions.h" -#include "../includes/stg/MachRegs.h" +#include "../includes/stg/HaskellMachRegs.h" import BlockId import CgMonad diff --git a/compiler/codeGen/StgCmmUtils.hs b/compiler/codeGen/StgCmmUtils.hs index 4798c65a4a..caecff923b 100644 --- a/compiler/codeGen/StgCmmUtils.hs +++ b/compiler/codeGen/StgCmmUtils.hs @@ -50,7 +50,7 @@ module StgCmmUtils ( ) where #include "HsVersions.h" -#include "../includes/stg/MachRegs.h" +#include "../includes/stg/HaskellMachRegs.h" import StgCmmMonad import StgCmmClosure diff --git a/compiler/nativeGen/PPC/Regs.hs b/compiler/nativeGen/PPC/Regs.hs index fe4e06fcc5..0d1c5705af 100644 --- a/compiler/nativeGen/PPC/Regs.hs +++ b/compiler/nativeGen/PPC/Regs.hs @@ -55,7 +55,7 @@ where #include "nativeGen/NCG.h" #include "HsVersions.h" -#include "../includes/stg/MachRegs.h" +#include "../includes/stg/HaskellMachRegs.h" import Reg import RegClass diff --git a/compiler/nativeGen/RegAlloc/Linear/Main.hs b/compiler/nativeGen/RegAlloc/Linear/Main.hs index 0d3f7485c3..07b6e33d25 100644 --- a/compiler/nativeGen/RegAlloc/Linear/Main.hs +++ b/compiler/nativeGen/RegAlloc/Linear/Main.hs @@ -130,7 +130,7 @@ import Data.Maybe import Data.List import Control.Monad -#include "../includes/stg/MachRegs.h" +#include "../includes/stg/HaskellMachRegs.h" -- ----------------------------------------------------------------------------- diff --git a/compiler/nativeGen/SPARC/RegPlate.hs b/compiler/nativeGen/SPARC/RegPlate.hs index 32d2da187f..be638a934b 100644 --- a/compiler/nativeGen/SPARC/RegPlate.hs +++ b/compiler/nativeGen/SPARC/RegPlate.hs @@ -100,7 +100,7 @@ import FastBool #define f31 63 -#include "../includes/stg/MachRegs.h" +#include "../includes/stg/HaskellMachRegs.h" -- | Check whether a machine register is free for allocation. freeReg :: RegNo -> FastBool diff --git a/compiler/nativeGen/X86/Regs.hs b/compiler/nativeGen/X86/Regs.hs index 854df0d002..44052582b6 100644 --- a/compiler/nativeGen/X86/Regs.hs +++ b/compiler/nativeGen/X86/Regs.hs @@ -51,7 +51,7 @@ where #include "nativeGen/NCG.h" #include "HsVersions.h" -#include "../includes/stg/MachRegs.h" +#include "../includes/stg/HaskellMachRegs.h" import Reg import RegClass |