[commit: ghc] master: Minor refactoring (798c943)
git at git.haskell.org
git at git.haskell.org
Sat Nov 17 12:52:57 UTC 2018
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/798c943781e14b7111431d3c7193c93fcc5ffa3e/ghc
>---------------------------------------------------------------
commit 798c943781e14b7111431d3c7193c93fcc5ffa3e
Author: Gabor Greif <ggreif at gmail.com>
Date: Thu Feb 8 15:54:20 2018 +0100
Minor refactoring
PR: https://github.com/ghc/ghc/pull/223/
>---------------------------------------------------------------
798c943781e14b7111431d3c7193c93fcc5ffa3e
compiler/cmm/CLabel.hs | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/compiler/cmm/CLabel.hs b/compiler/cmm/CLabel.hs
index dbb92e5..3f7c97f 100644
--- a/compiler/cmm/CLabel.hs
+++ b/compiler/cmm/CLabel.hs
@@ -1316,20 +1316,20 @@ pprCLbl (PicBaseLabel {}) = panic "pprCLbl PicBaseLabel"
pprCLbl (DeadStripPreventer {}) = panic "pprCLbl DeadStripPreventer"
ppIdFlavor :: IdLabelInfo -> SDoc
-ppIdFlavor x = pp_cSEP <>
+ppIdFlavor x = pp_cSEP <> text
(case x of
- Closure -> text "closure"
- InfoTable -> text "info"
- LocalInfoTable -> text "info"
- Entry -> text "entry"
- LocalEntry -> text "entry"
- Slow -> text "slow"
- RednCounts -> text "ct"
- ConEntry -> text "con_entry"
- ConInfoTable -> text "con_info"
- ClosureTable -> text "closure_tbl"
- Bytes -> text "bytes"
- BlockInfoTable -> text "info"
+ Closure -> "closure"
+ InfoTable -> "info"
+ LocalInfoTable -> "info"
+ Entry -> "entry"
+ LocalEntry -> "entry"
+ Slow -> "slow"
+ RednCounts -> "ct"
+ ConEntry -> "con_entry"
+ ConInfoTable -> "con_info"
+ ClosureTable -> "closure_tbl"
+ Bytes -> "bytes"
+ BlockInfoTable -> "info"
)
More information about the ghc-commits
mailing list