Skip to content
Snippets Groups Projects
Commit 7a274a7f authored by Ben Gamari's avatar Ben Gamari
Browse files

compiler: Fix bootstrapping with 9.8.3

Bump the CPP in genSym to ensure that we don't look for
`ghc_unique_counter64` in any compilers earlier than 9.8.4.

Inconsistency noticed in #25519.
parent 1b2f40f9
Branches float
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
// //
// The CPP is thus about the RTS version GHC is linked against, and not the // The CPP is thus about the RTS version GHC is linked against, and not the
// version of the GHC being built. // version of the GHC being built.
#if !MIN_VERSION_GLASGOW_HASKELL(9,7,0,0) #if !MIN_VERSION_GLASGOW_HASKELL(9,8,4,0)
HsWord64 ghc_unique_counter64 = 0; HsWord64 ghc_unique_counter64 = 0;
#endif #endif
#if !MIN_VERSION_GLASGOW_HASKELL(9,3,0,0) #if !MIN_VERSION_GLASGOW_HASKELL(9,3,0,0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment