types: remove dirty Ord instance of MethodSignature
[mate.git] / Mate / RegisterAllocation.hs
index 9fc43ae51d5a4deeb6de6e3ba994e70ae8cfa7dc..7f220aabbac52570e955152691402ebc6291bfd2 100644 (file)
@@ -1,5 +1,9 @@
+{-# LANGUAGE CPP #-}
 module Mate.RegisterAllocation where
 
+
+#include "debug.h"
+
 import Data.List
 import Data.Maybe
 
@@ -35,7 +39,7 @@ count p = length . filter p
 degree g@(IGraph xs) label = count (isParticipiant label) xs
 
 
-doChaitin81 :: (Eq a) => IArchitecture -> (IGraph a) -> [Assignment a]
+doChaitin81 :: (Eq a) => IArchitecture -> IGraph a -> [Assignment a]
 doChaitin81 numberOfRegisters graph = []
 
 type IState a = ([a],IGraph a)