Fix warnings in StgCmmGran
authorIan Lynagh <igloo@earth.li>
Tue, 9 Dec 2008 22:24:13 +0000 (22:24 +0000)
committerIan Lynagh <igloo@earth.li>
Tue, 9 Dec 2008 22:24:13 +0000 (22:24 +0000)
compiler/codeGen/StgCmmGran.hs

index 5fad2bf..27e6114 100644 (file)
@@ -8,13 +8,6 @@
 --
 -----------------------------------------------------------------------------
 
 --
 -----------------------------------------------------------------------------
 
-{-# 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 StgCmmGran (
        staticGranHdr,staticParHdr,
        granThunk, granYield,
 module StgCmmGran (
        staticGranHdr,staticParHdr,
        granThunk, granYield,
@@ -26,7 +19,6 @@ module StgCmmGran (
 -- I've left the calls, though, in case anyone wants to resurrect it
 
 import StgCmmMonad
 -- I've left the calls, though, in case anyone wants to resurrect it
 
 import StgCmmMonad
-import Id
 import Cmm
 
 staticGranHdr :: [CmmLit]
 import Cmm
 
 staticGranHdr :: [CmmLit]
@@ -37,16 +29,13 @@ staticParHdr = []
 
 doGranAllocate :: VirtualHpOffset -> FCode ()
 -- Must be lazy in the amount of allocation
 
 doGranAllocate :: VirtualHpOffset -> FCode ()
 -- Must be lazy in the amount of allocation
-doGranAllocate n = return ()
-
-granFetchAndReschedule :: [(Id,GlobalReg)] -> Bool -> FCode ()
-granFetchAndReschedule regs node_reqd = return ()
+doGranAllocate _ = return ()
 
 granYield :: [LocalReg] -> Bool -> FCode ()
 
 granYield :: [LocalReg] -> Bool -> FCode ()
-granYield regs node_reqd = return ()
+granYield _regs _node_reqd = return ()
 
 granThunk :: Bool -> FCode ()
 
 granThunk :: Bool -> FCode ()
-granThunk node_points = return ()
+granThunk _node_points = return ()
 
 -----------------------------------------------------------------
 {-   ------- Everything below here is commented out -------------
 
 -----------------------------------------------------------------
 {-   ------- Everything below here is commented out -------------