types: remove dirty Ord instance of MethodSignature
[mate.git] / Mate / RegisterAllocation.hs
index 6dfaa80aee5a45c7c6ab8b9baf8c2226cc1a1662..7f220aabbac52570e955152691402ebc6291bfd2 100644 (file)
@@ -1,6 +1,9 @@
-#include "debug.h"
+{-# LANGUAGE CPP #-}
 module Mate.RegisterAllocation where
 
+
+#include "debug.h"
+
 import Data.List
 import Data.Maybe
 
@@ -36,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)