diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-12-09 00:01:54 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-12-09 20:16:20 -0500 |
commit | c658c580863fc23c29f183db3f52a2004756d84c (patch) | |
tree | ba1d768737b1b02bb0eb9b2542c677463a9677ef /compiler/GHC/Core | |
parent | 195b08b4e933706ba4a29ab0a8357556d56f792c (diff) | |
download | haskell-c658c580863fc23c29f183db3f52a2004756d84c.tar.gz |
hlint: Removed redundant UnboxedSums pragmas
UnboxedSums is quite confusingly implied by UnboxedTuples, alas, just
the way it is.
See #22485
Diffstat (limited to 'compiler/GHC/Core')
-rw-r--r-- | compiler/GHC/Core/Lint.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/GHC/Core/Lint.hs b/compiler/GHC/Core/Lint.hs index e541058cc7..f980371c26 100644 --- a/compiler/GHC/Core/Lint.hs +++ b/compiler/GHC/Core/Lint.hs @@ -2,7 +2,6 @@ {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE PatternSynonyms #-} {-# LANGUAGE UnboxedTuples #-} -{-# LANGUAGE UnboxedSums #-} {- (c) The University of Glasgow 2006 |