X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Ftypecheck%2FInst.lhs;h=d507bddb1bc54ec97f451c3e611dadedfd77b5ee;hb=4cf7988f740ee799bbdb0b6e653c096099378085;hp=db61c6d65c36921c8182e637bc017b23707af304;hpb=288213d7c2c65fa68ca466c1a1a3378e24fa1151;p=ghc-hetmet.git diff --git a/compiler/typecheck/Inst.lhs b/compiler/typecheck/Inst.lhs index db61c6d..d507bdd 100644 --- a/compiler/typecheck/Inst.lhs +++ b/compiler/typecheck/Inst.lhs @@ -473,19 +473,20 @@ newMethod inst_loc id tys = do \begin{code} shortCutIntLit :: Integer -> TcType -> Maybe (HsExpr TcId) shortCutIntLit i ty - | isIntTy ty && inIntRange i -- Short cut for Int - = Just (HsLit (HsInt i)) - | isIntegerTy ty -- Short cut for Integer - = Just (HsLit (HsInteger i ty)) - | otherwise = Nothing + | isIntTy ty && inIntRange i = Just (HsLit (HsInt i)) + | isIntegerTy ty = Just (HsLit (HsInteger i ty)) + | otherwise = shortCutFracLit (fromInteger i) ty + -- The 'otherwise' case is important + -- Consider (3 :: Float). Syntactically it looks like an IntLit, + -- so we'll call shortCutIntLit, but of course it's a float + -- This can make a big difference for programs with a lot of + -- literals, compiled without -O shortCutFracLit :: Rational -> TcType -> Maybe (HsExpr TcId) shortCutFracLit f ty - | isFloatTy ty - = Just (mk_lit floatDataCon (HsFloatPrim f)) - | isDoubleTy ty - = Just (mk_lit doubleDataCon (HsDoublePrim f)) - | otherwise = Nothing + | isFloatTy ty = Just (mk_lit floatDataCon (HsFloatPrim f)) + | isDoubleTy ty = Just (mk_lit doubleDataCon (HsDoublePrim f)) + | otherwise = Nothing where mk_lit con lit = HsApp (nlHsVar (dataConWrapId con)) (nlHsLit lit)