diff options
author | Ian Lynagh <igloo@earth.li> | 2009-06-20 15:51:54 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-06-20 15:51:54 +0000 |
commit | bfd8d9ef58415debd7c5ae566902b8bfe1a92b74 (patch) | |
tree | e91a2389ed7a159f71f2784021ce1da3564c62d1 | |
parent | fa0cd53b30a261ce282757c12c775e7d6194fd62 (diff) | |
download | haskell-bfd8d9ef58415debd7c5ae566902b8bfe1a92b74.tar.gz |
The IO type has moved to GHC.Types in ghc-prim
-rw-r--r-- | compiler/prelude/PrelNames.lhs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/prelude/PrelNames.lhs b/compiler/prelude/PrelNames.lhs index 4e18f5dd2b..a16311ab7a 100644 --- a/compiler/prelude/PrelNames.lhs +++ b/compiler/prelude/PrelNames.lhs @@ -739,8 +739,8 @@ appPName = varQual gHC_PARR (fsLit "+:+") appPIdKey -- IO things ioTyConName, ioDataConName, thenIOName, bindIOName, returnIOName, failIOName :: Name -ioTyConName = tcQual gHC_IO (fsLit "IO") ioTyConKey -ioDataConName = conName gHC_IO (fsLit "IO") ioDataConKey +ioTyConName = tcQual gHC_TYPES (fsLit "IO") ioTyConKey +ioDataConName = conName gHC_TYPES (fsLit "IO") ioDataConKey thenIOName = varQual gHC_IO (fsLit "thenIO") thenIOIdKey bindIOName = varQual gHC_IO (fsLit "bindIO") bindIOIdKey returnIOName = varQual gHC_IO (fsLit "returnIO") returnIOIdKey |