[project @ 1996-07-15 16:16:46 by partain]
[ghc-hetmet.git] / ghc / compiler / codeGen / CgCompInfo.lhs
index 4b52bf0..561f8bf 100644 (file)
@@ -63,9 +63,6 @@ module CgCompInfo (
 
        spARelToInt,
        spBRelToInt
-
-       -- and to make the interface self-sufficient...
---     RegRelative
     ) where
 
 -- This magical #include brings in all the everybody-knows-these magic
@@ -141,6 +138,9 @@ mAX_INTLIKE = MAX_INTLIKE
 
 \begin{code}
 -- THESE ARE DIRECTION SENSITIVE!
+spARelToInt :: Int{-VirtualSpAOffset-} -> Int{-VirtualSpAOffset-} -> Int
+spBRelToInt :: Int{-VirtualSpBOffset-} -> Int{-VirtualSpBOffset-} -> Int
+
 spARelToInt spA off = spA - off -- equiv to: AREL(spA - off)
 spBRelToInt spB off = off - spB -- equiv to: BREL(spB - off)
 \end{code}