[Git][ghc/ghc][wip/andreask/dom-lt-fixes] Whitespace in front of ! operator

Andreas Klebinger gitlab at gitlab.haskell.org
Tue Aug 25 12:48:02 UTC 2020



Andreas Klebinger pushed to branch wip/andreask/dom-lt-fixes at Glasgow Haskell Compiler / GHC


Commits:
fa115f2a by Andreas Klebinger at 2020-08-25T14:47:51+02:00
Whitespace in front of ! operator

- - - - -


1 changed file:

- compiler/GHC/CmmToAsm/CFG/Dominators.hs


Changes:

=====================================
compiler/GHC/CmmToAsm/CFG/Dominators.hs
=====================================
@@ -364,11 +364,11 @@ domM = fetch domE
 rootM :: Dom s Node
 rootM = gets rootE
 succsM :: Node -> Dom s [Node]
-succsM i = gets (IS.toList . (!i) . succE)
+succsM i = gets (IS.toList . (! i) . succE)
 predsM :: Node -> Dom s [Node]
-predsM i = gets (IS.toList . (!i) . predE)
+predsM i = gets (IS.toList . (! i) . predE)
 bucketM :: Node -> Dom s [Node]
-bucketM i = gets (IS.toList . (!i) . bucketE)
+bucketM i = gets (IS.toList . (! i) . bucketE)
 sizeM :: Node -> Dom s Int
 sizeM = fetch sizeE
 sdnoM :: Node -> Dom s Int



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/fa115f2a88adfd16eddeda68ca08860d2bb4f343

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/fa115f2a88adfd16eddeda68ca08860d2bb4f343
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20200825/8c294939/attachment-0001.html>


More information about the ghc-commits mailing list