diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-04 16:23:54 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-09 16:21:14 -0400 |
commit | 5f2c49d804ce38816a62ea0a197dbac79ac8b9c2 (patch) | |
tree | 27860ec808e068543f64ff9824d548cd8f183abc /includes | |
parent | 817c1a947d50a070613815e02a530f83d9078eb8 (diff) | |
download | haskell-5f2c49d804ce38816a62ea0a197dbac79ac8b9c2.tar.gz |
Remove GHC_STAGE guards from MachDeps
This allows the stage1 compiler (which needs to run on the build
platform and produce code for the host) to depend upon properties of the
target. This is wrong. However, it's no more wrong than it was
previously and @Erichson2314 is working on fixing this so I'm going to
remove the guard so we can finally bootstrap HEAD with ghc-8.8 (see
issue #17146).
Diffstat (limited to 'includes')
-rw-r--r-- | includes/MachDeps.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/includes/MachDeps.h b/includes/MachDeps.h index 5160e381e0..81d6641dff 100644 --- a/includes/MachDeps.h +++ b/includes/MachDeps.h @@ -38,7 +38,6 @@ * * Hence we hide these macros from GHC_STAGE=1 */ -#if !defined(GHC_STAGE) || GHC_STAGE >= 2 /* Sizes of C types come from here... */ #include "ghcautoconf.h" @@ -120,4 +119,3 @@ #define TAG_MASK ((1 << TAG_BITS) - 1) -#endif /* !defined(GHC_STAGE) || GHC_STAGE >= 2 */ |