X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2Futils%2FUniqFM.lhs;h=e38f4f54f5222eb104cad028f5c1f62776e20a17;hb=06e14415fa8aef5be7d01314d08fcd87873cd0da;hp=6aa75b9dc9c3daf2ac8fc539581c55d4ecf1b18c;hpb=56af76cc6a264621bfd18071f21e6a608e691e47;p=ghc-hetmet.git diff --git a/ghc/compiler/utils/UniqFM.lhs b/ghc/compiler/utils/UniqFM.lhs index 6aa75b9..e38f4f5 100644 --- a/ghc/compiler/utils/UniqFM.lhs +++ b/ghc/compiler/utils/UniqFM.lhs @@ -153,7 +153,7 @@ ufmToList :: UniqFM elt -> [(Unique, elt)] , UniqFM elt -> Unique -> Maybe elt #-} -#endif {- __GLASGOW_HASKELL__ -} +#endif /* __GLASGOW_HASKELL__ */ #endif \end{code} @@ -814,11 +814,11 @@ shiftR_ n p = word2Int#((int2Word# n) `shiftr` p) shiftr x y = shiftRL# x y #endif -#else {- not GHC -} +#else /* not GHC */ shiftL_ n p = n * (2 ^ p) shiftR_ n p = n `quot` (2 ^ p) -#endif {- not GHC -} +#endif /* not GHC */ \end{code} \begin{code}