[commit: packages/ghc-prim] master: Add missing `{-# LANGUAGE #-}` pragmas (b07b88e)
git at git.haskell.org
git at git.haskell.org
Sun Oct 27 09:48:23 UTC 2013
Repository : ssh://git@git.haskell.org/ghc-prim
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/b07b88e5d5c3ccd1508b235688f751408636c49e/ghc-prim
>---------------------------------------------------------------
commit b07b88e5d5c3ccd1508b235688f751408636c49e
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date: Sun Oct 27 10:07:13 2013 +0100
Add missing `{-# LANGUAGE #-}` pragmas
Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>
>---------------------------------------------------------------
b07b88e5d5c3ccd1508b235688f751408636c49e
GHC/CString.hs | 2 +-
GHC/Debug.hs | 2 +-
GHC/IntWord64.hs | 2 +-
GHC/Types.hs | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/GHC/CString.hs b/GHC/CString.hs
index ef9223e..53d1ddd 100644
--- a/GHC/CString.hs
+++ b/GHC/CString.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE NoImplicitPrelude, BangPatterns #-}
+{-# LANGUAGE MagicHash, NoImplicitPrelude, BangPatterns #-}
-----------------------------------------------------------------------------
-- |
-- Module : GHC.CString
diff --git a/GHC/Debug.hs b/GHC/Debug.hs
index 63b1d84..a5b4385 100644
--- a/GHC/Debug.hs
+++ b/GHC/Debug.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE Trustworthy #-}
+{-# LANGUAGE MagicHash, NoImplicitPrelude, UnboxedTuples, UnliftedFFITypes, Trustworthy #-}
module GHC.Debug ( debugLn, debugErrLn ) where
diff --git a/GHC/IntWord64.hs b/GHC/IntWord64.hs
index c86b229..7dd5b02 100644
--- a/GHC/IntWord64.hs
+++ b/GHC/IntWord64.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE NoImplicitPrelude #-}
+{-# LANGUAGE CPP, NoImplicitPrelude #-}
{-# OPTIONS_HADDOCK hide #-}
-----------------------------------------------------------------------------
-- |
diff --git a/GHC/Types.hs b/GHC/Types.hs
index 4f97215..5ef6897 100644
--- a/GHC/Types.hs
+++ b/GHC/Types.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE NoImplicitPrelude, TypeFamilies #-}
+{-# LANGUAGE MagicHash, NoImplicitPrelude, TypeFamilies, UnboxedTuples #-}
-----------------------------------------------------------------------------
-- |
-- Module : GHC.Types
More information about the ghc-commits
mailing list