Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • haskell/ghc-api-compat
  • hsyl20/ghc-api-compat
  • berberman/ghc-api-compat
  • AriFordsham/ghc-api-compat
4 results
Show changes
Commits on Source (2)
......@@ -22,7 +22,7 @@ library
ghc >= 8.6, base < 5.0
default-language: Haskell2010
if impl(ghc >= 9.0)
if impl(ghc >= 8.10.5)
reexported-modules:
GHC.Platform.AArch64 as CodeGen.Platform.ARM64
......@@ -30,7 +30,9 @@ library
reexported-modules:
GHC.Hs.Types as HsTypes
, GHC.Hs.PlaceHolder as PlaceHolder
, GHC.Platform.ARM64 as CodeGen.Platform.ARM64
if impl(ghc >= 8.10) && impl(ghc < 8.10.5)
reexported-modules:
GHC.Platform.ARM64 as CodeGen.Platform.ARM64
if impl(ghc >= 8.10)
reexported-modules:
......@@ -102,8 +104,8 @@ library
, GHC.Rename.Unbound as RnUnbound
, GHC.Rename.Utils as RnUtils
, GHC.Builtin.Names
, GHC.Builtin.Names.TH
, GHC.Builtin.Names as PrelNames
, GHC.Builtin.Names.TH as THNames
, GHC.Builtin.PrimOps as PrimOp
, GHC.Builtin.RebindableNames
, GHC.Builtin.Types as TysWiredIn
......