[commit: ghc] wip/T14626: WIP: to confirm my suspicion, remove the bangs (a4471ab)

git at git.haskell.org git at git.haskell.org
Sun Jan 28 16:06:48 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/T14626
Link       : http://ghc.haskell.org/trac/ghc/changeset/a4471abf0209237e5d99b34575d47c3bccc6b604/ghc

>---------------------------------------------------------------

commit a4471abf0209237e5d99b34575d47c3bccc6b604
Author: Gabor Greif <ggreif at gmail.com>
Date:   Thu Jan 11 23:18:24 2018 +0100

    WIP: to confirm my suspicion, remove the bangs
    
    I'll back this out later


>---------------------------------------------------------------

a4471abf0209237e5d99b34575d47c3bccc6b604
 compiler/basicTypes/Name.hs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/basicTypes/Name.hs b/compiler/basicTypes/Name.hs
index 637fc69..75f835b 100644
--- a/compiler/basicTypes/Name.hs
+++ b/compiler/basicTypes/Name.hs
@@ -108,9 +108,9 @@ import Data.Data
 -- that thing originated.
 data Name = Name {
                 n_sort :: NameSort,     -- What sort of name it is
-                n_occ  :: !OccName,     -- Its occurrence name
+                n_occ  :: OccName,     -- Its occurrence name
                 n_uniq :: {-# UNPACK #-} !Unique,
-                n_loc  :: !SrcSpan      -- Definition site
+                n_loc  :: SrcSpan      -- Definition site
             }
 
 -- NOTE: we make the n_loc field strict to eliminate some potential



More information about the ghc-commits mailing list