diff options
author | Simon Marlow <marlowsd@gmail.com> | 2011-08-24 12:39:46 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-08-25 11:12:34 +0100 |
commit | 621ea4126b1948fe90915940b364f1efe41cad44 (patch) | |
tree | 1fc24afefddc5ceb24362aca85956681be691887 /compiler/codeGen/StgCmmMonad.hs | |
parent | 4ebf65abcc94647be48216b8ea616c5a8d0b1fce (diff) | |
download | haskell-621ea4126b1948fe90915940b364f1efe41cad44.tar.gz |
get rid of the cg_rep field of CgIdInfo, which wasn't used anywhere
Diffstat (limited to 'compiler/codeGen/StgCmmMonad.hs')
-rw-r--r-- | compiler/codeGen/StgCmmMonad.hs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/codeGen/StgCmmMonad.hs b/compiler/codeGen/StgCmmMonad.hs index 55dd45b0ec..7ea2183ef2 100644 --- a/compiler/codeGen/StgCmmMonad.hs +++ b/compiler/codeGen/StgCmmMonad.hs @@ -55,7 +55,6 @@ import DynFlags import MkGraph import BlockId import CLabel -import TyCon ( PrimRep ) import SMRep import Module import Id @@ -178,7 +177,6 @@ data CgIdInfo -- virtue of being externalised, for splittable C , cg_lf :: LambdaFormInfo , cg_loc :: CgLoc -- CmmExpr for the *tagged* value - , cg_rep :: PrimRep -- Cache for (idPrimRep id) , cg_tag :: {-# UNPACK #-} !DynTag -- Cache for (lfDynTag cg_lf) } |