diff options
author | Ian Lynagh <igloo@earth.li> | 2012-02-26 17:37:38 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-02-26 17:37:38 +0000 |
commit | ee435a27c9884962b6a39a7f222a6e051a62afce (patch) | |
tree | 2eccd6e603728323fbbbd6df3c89f5ee1139ab58 | |
parent | bb6657df9685b71f2ca2246539b6e4db26191b10 (diff) | |
download | haskell-ee435a27c9884962b6a39a7f222a6e051a62afce.tar.gz |
Change -X flags into LANGUAGE pragmas
-rw-r--r-- | compiler/cmm/CmmBuildInfoTables.hs | 6 | ||||
-rw-r--r-- | compiler/cmm/CmmPipeline.hs | 4 | ||||
-rw-r--r-- | compiler/cmm/CmmStackLayout.hs | 6 | ||||
-rw-r--r-- | compiler/typecheck/TcGenDeriv.lhs | 4 | ||||
-rw-r--r-- | compiler/utils/UniqFM.lhs | 4 |
5 files changed, 14 insertions, 10 deletions
diff --git a/compiler/cmm/CmmBuildInfoTables.hs b/compiler/cmm/CmmBuildInfoTables.hs index e6d9eea6e6..27c9bcb2cf 100644 --- a/compiler/cmm/CmmBuildInfoTables.hs +++ b/compiler/cmm/CmmBuildInfoTables.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -XGADTs -XNoMonoLocalBinds #-} +{-# LANGUAGE GADTs, NoMonoLocalBinds #-} {-# OPTIONS -fno-warn-tabs #-} -- The above warning supression flag is a temporary kludge. -- While working on this module you are encouraged to remove it and @@ -7,8 +7,8 @@ -- for details -- Norman likes local bindings --- If this module lives on I'd like to get rid of the -XNoMonoLocalBinds --- flag in due course +-- If this module lives on I'd like to get rid of the NoMonoLocalBinds +-- extension in due course -- Todo: remove -fno-warn-warnings-deprecations {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-} diff --git a/compiler/cmm/CmmPipeline.hs b/compiler/cmm/CmmPipeline.hs index 3d98d0a9ec..73e8b338f5 100644 --- a/compiler/cmm/CmmPipeline.hs +++ b/compiler/cmm/CmmPipeline.hs @@ -1,6 +1,6 @@ -{-# OPTIONS_GHC -XNoMonoLocalBinds #-} +{-# LANGUAGE NoMonoLocalBinds #-} -- Norman likes local bindings --- If this module lives on I'd like to get rid of this flag in due course +-- If this module lives on I'd like to get rid of this extension in due course module CmmPipeline ( -- | Converts C-- with an implicit stack and native C-- calls into diff --git a/compiler/cmm/CmmStackLayout.hs b/compiler/cmm/CmmStackLayout.hs index 8c4f8e3704..c7fedad05b 100644 --- a/compiler/cmm/CmmStackLayout.hs +++ b/compiler/cmm/CmmStackLayout.hs @@ -1,7 +1,7 @@ -{-# OPTIONS_GHC -XGADTs -XNoMonoLocalBinds #-} +{-# LANGUAGE GADTs, NoMonoLocalBinds #-} -- Norman likes local bindings --- If this module lives on I'd like to get rid of the -XNoMonoLocalBinds --- flag in due course +-- If this module lives on I'd like to get rid of the NoMonoLocalBinds +-- extension in due course {-# OPTIONS -fno-warn-tabs #-} -- The above warning supression flag is a temporary kludge. diff --git a/compiler/typecheck/TcGenDeriv.lhs b/compiler/typecheck/TcGenDeriv.lhs index 70d841e5ed..481c4ed727 100644 --- a/compiler/typecheck/TcGenDeriv.lhs +++ b/compiler/typecheck/TcGenDeriv.lhs @@ -11,7 +11,9 @@ This module is nominally ``subordinate'' to @TcDeriv@, which is the This is where we do all the grimy bindings' generation. \begin{code} -{-# OPTIONS -fno-warn-tabs -XScopedTypeVariables #-} +{-# LANGUAGE ScopedTypeVariables #-} + +{-# OPTIONS -fno-warn-tabs #-} -- The above warning supression flag is a temporary kludge. -- While working on this module you are encouraged to remove it and -- detab the module (please do the detabbing in a separate patch). See diff --git a/compiler/utils/UniqFM.lhs b/compiler/utils/UniqFM.lhs index 4ee6e190cc..259689c454 100644 --- a/compiler/utils/UniqFM.lhs +++ b/compiler/utils/UniqFM.lhs @@ -20,7 +20,9 @@ and ``addToUFM\_C'' and ``Data.IntMap.insertWith'' differ in the order of arguments of combining function. \begin{code} -{-# OPTIONS -fno-warn-tabs -XGeneralizedNewtypeDeriving #-} +{-# LANGUAGE GeneralizedNewtypeDeriving #-} + +{-# OPTIONS -fno-warn-tabs #-} -- The above warning supression flag is a temporary kludge. -- While working on this module you are encouraged to remove it and -- detab the module (please do the detabbing in a separate patch). See |