Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move more code into codeGen/CodeGen/Platform.hs | Ian Lynagh | 2012-08-28 | 1 | -2/+0 |
| | | | | | | | | HaskellMachRegs.h is no longer included in anything under compiler/ Also, includes/CodeGen.Platform.hs now includes "stg/MachRegs.h" rather than <stg/MachRegs.h> which means that we always get the file from the tree, rather than from the bootstrapping compiler. | ||||
* | Move activeStgRegs into CodeGen.Platform | Ian Lynagh | 2012-08-21 | 1 | -2/+2 |
| | |||||
* | Fix the generation of CallerSaves; fixes #7163 | Ian Lynagh | 2012-08-21 | 1 | -0/+9 |
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. |