diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2019-09-13 17:55:31 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-17 19:24:20 -0400 |
commit | c77fc3b20e93ba3215791d8d087a096853c4dd67 (patch) | |
tree | 20e9a500dace9446c33bc1aa125fb55ec4e3a3b1 /utils/genapply | |
parent | 1c3af277582be677a11b1f292acb8c88ca3368b1 (diff) | |
download | haskell-c77fc3b20e93ba3215791d8d087a096853c4dd67.tar.gz |
Deduplicate `HaskellMachRegs.h` and `RtsMachRegs.h` headers
Until 0472f0f6a92395d478e9644c0dbd12948518099f there was a meaningful
host vs target distinction (though it wasn't used right, in genapply).
After that, they did not differ in meaningful ways, so it's best to just
only keep one.
Diffstat (limited to 'utils/genapply')
-rw-r--r-- | utils/genapply/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/genapply/Main.hs b/utils/genapply/Main.hs index 4a9d1e1526..4d25054a1c 100644 --- a/utils/genapply/Main.hs +++ b/utils/genapply/Main.hs @@ -16,7 +16,7 @@ module Main(main) where #include "../../includes/ghcconfig.h" -- .. so that this header defines the right stuff. -#include "../../includes/stg/HaskellMachRegs.h" +#include "../../includes/stg/MachRegsForHost.h" #include "../../includes/rts/Constants.h" |