[project @ 2004-08-18 10:07:29 by simonmar]
authorsimonmar <unknown>
Wed, 18 Aug 2004 10:07:29 +0000 (10:07 +0000)
committersimonmar <unknown>
Wed, 18 Aug 2004 10:07:29 +0000 (10:07 +0000)
Remove extra semicolon; exposed by other recent changes.

ghc/compiler/cmm/PprC.hs

index a09edd1..a50d403 100644 (file)
@@ -336,7 +336,7 @@ pprMachOpApp :: MachOp -> [CmmExpr] -> SDoc
 
 pprMachOpApp op args
   | isMulMayOfloOp op
-  = ptext SLIT("mulIntMayOflo") <> parens (commafy (map pprExpr args)) <> semi
+  = ptext SLIT("mulIntMayOflo") <> parens (commafy (map pprExpr args))
   where isMulMayOfloOp (MO_U_MulMayOflo _) = True
        isMulMayOfloOp (MO_S_MulMayOflo _) = True
        isMulMayOfloOp _ = False