[commit: ghc] wip/T14626: WIP: checkpoint (2905cfb)
git at git.haskell.org
git at git.haskell.org
Mon Jan 15 06:56:10 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T14626
Link : http://ghc.haskell.org/trac/ghc/changeset/2905cfb4bf665a69aa3b1ea619b3b428ed64d6e8/ghc
>---------------------------------------------------------------
commit 2905cfb4bf665a69aa3b1ea619b3b428ed64d6e8
Author: Gabor Greif <ggreif at gmail.com>
Date: Mon Jan 15 07:55:52 2018 +0100
WIP: checkpoint
>---------------------------------------------------------------
2905cfb4bf665a69aa3b1ea619b3b428ed64d6e8
compiler/codeGen/StgCmmCon.hs | 5 +++--
compiler/utils/Outputable.hs | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/compiler/codeGen/StgCmmCon.hs b/compiler/codeGen/StgCmmCon.hs
index a00081c..bc3d69c 100644
--- a/compiler/codeGen/StgCmmCon.hs
+++ b/compiler/codeGen/StgCmmCon.hs
@@ -258,8 +258,9 @@ buildDynCon' dflags _ binder actually_bound ccs con args
checkTagOnPtr base (((NonVoid (StgVarArg var)),offset), bang)
| isBanged bang
- , isAlgType (let ty = idType var in pprTrace "checkTagOnPtrTy" (ppr ty) ty)
- = do lgood <- newBlockId
+ , let ty = idType var
+ , isAlgType ty
+ = do lgood <- pprTrace "checkTagOnPtr#Ty" (ppr ty) newBlockId
lcall <- newBlockId
let p = CmmLoad (cmmOffsetB dflags base offset) (bWord dflags)
emit $ mkCbranch (cmmIsTagged dflags p)
diff --git a/compiler/utils/Outputable.hs b/compiler/utils/Outputable.hs
index d9580a8..3050fa1 100644
--- a/compiler/utils/Outputable.hs
+++ b/compiler/utils/Outputable.hs
@@ -321,7 +321,7 @@ code (either C or assembly), or generating interface files.
newtype SDoc = SDoc { runSDoc :: SDocContext -> Doc }
data SDocContext = SDC
- { sdocStyle :: PprStyle
+ { sdocStyle :: !PprStyle
, sdocLastColour :: !Col.PprColour
-- ^ The most recently used colour. This allows nesting colours.
, sdocDynFlags :: !DynFlags
More information about the ghc-commits
mailing list