Remove some redundant fromIntegral's
authorIan Lynagh <igloo@earth.li>
Thu, 30 Jul 2009 10:55:32 +0000 (10:55 +0000)
committerIan Lynagh <igloo@earth.li>
Thu, 30 Jul 2009 10:55:32 +0000 (10:55 +0000)
compiler/ghci/ByteCodeAsm.lhs
compiler/ghci/ByteCodeGen.lhs

index 1a99096..5980810 100644 (file)
@@ -174,7 +174,7 @@ mkBitmapArray bsize bitmap
 
 mkInstrArray :: Word16 -> [Word16] -> UArray Word16 Word16
 mkInstrArray n_insns asm_insns
-  = listArray (0, n_insns) (fromIntegral n_insns : asm_insns)
+  = listArray (0, n_insns) (n_insns : asm_insns)
 
 -- instrs nonptrs ptrs
 type AsmState = (SizedSeq Word16,
index 8a4b5e2..4ec8043 100644 (file)
@@ -438,7 +438,7 @@ schemeE d s p (AnnLet binds (_,body))
 
         compile_bind d' fvs x rhs size arity off = do
                bco <- schemeR fvs (x,rhs)
-               build_thunk (fromIntegral d') fvs size bco off arity
+               build_thunk d' fvs size bco off arity
 
         compile_binds = 
            [ compile_bind d' fvs x rhs size arity n
@@ -1203,7 +1203,7 @@ pushAtom d p (AnnVar v)
    = return (unitOL (PUSH_PRIMOP primop), 1)
 
    | Just d_v <- lookupBCEnv_maybe p v  -- v is a local variable
-   = let l = d - fromIntegral d_v + sz - 2
+   = let l = d - d_v + sz - 2
      in return (toOL (genericReplicate sz (PUSH_L l)), sz)
         -- d - d_v                 the number of words between the TOS 
         --                         and the 1st slot of the object