summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-07-10 19:06:14 +0000
committerIan Lynagh <igloo@earth.li>2008-07-10 19:06:14 +0000
commit15a63009a30ce0d1614b36803185f548db838805 (patch)
treef293857343f82ccfce1d32ae783d370cea6bb14c
parent36f7a29252e805a669ffb5437b6df6a90c1bc8dd (diff)
downloadhaskell-15a63009a30ce0d1614b36803185f548db838805.tar.gz
Change pragma order to stop GHC 6.4 getting confused
-rw-r--r--compiler/parser/Parser.y.pp14
1 files changed, 7 insertions, 7 deletions
diff --git a/compiler/parser/Parser.y.pp b/compiler/parser/Parser.y.pp
index d7971b4c52..4552fe24b7 100644
--- a/compiler/parser/Parser.y.pp
+++ b/compiler/parser/Parser.y.pp
@@ -8,6 +8,13 @@
-- ---------------------------------------------------------------------------
{
+{-# OPTIONS -w #-}
+-- The above warning supression flag is a temporary kludge.
+-- While working on this module you are encouraged to remove it and fix
+-- any warnings in the module. See
+-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
+-- for details
+
{-# OPTIONS_GHC -O0 -fno-ignore-interface-pragmas #-}
{-
Careful optimisation of the parser: we don't want to throw everything
@@ -16,13 +23,6 @@ to inline certain key external functions, so we instruct GHC not to
throw away inlinings as it would normally do in -O0 mode.
-}
-{-# OPTIONS -w #-}
--- The above warning supression flag is a temporary kludge.
--- While working on this module you are encouraged to remove it and fix
--- any warnings in the module. See
--- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
--- for details
-
module Parser ( parseModule, parseStmt, parseIdentifier, parseType,
parseHeader ) where