Remove unused imports
[ghc-hetmet.git] / compiler / nativeGen / RegAlloc / Graph / Main.hs
index d239d0d..5fa771c 100644 (file)
@@ -11,7 +11,6 @@ module RegAlloc.Graph.Main (
 where
 
 import qualified GraphColor    as Color
-import qualified GraphBase     as Color
 import RegAlloc.Liveness
 import RegAlloc.Graph.Spill
 import RegAlloc.Graph.SpillClean
@@ -317,6 +316,9 @@ graphAddCoalesce (r1, r2) graph
        | RegReal _             <- r1
        , RegReal _             <- r2
        = graph
+
+graphAddCoalesce _ _
+       = panic "graphAddCoalesce: bogus"
        
 
 -- | Patch registers in code using the reg -> reg mapping in this graph.