summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Nitka <bnitka@fb.com>2015-07-30 15:05:05 +0200
committerBen Gamari <ben@smart-cactus.org>2015-07-30 17:05:35 +0200
commit26315ed282db2eb1977872bbcb0b298f32b38e99 (patch)
tree2704c2ffb067523bc5253543a89c3d52a668f062
parente7c331af4674dd072a9f1d67feb586679b365b98 (diff)
downloadhaskell-26315ed282db2eb1977872bbcb0b298f32b38e99.tar.gz
Fix misspelled function name in a comment
Test Plan: none Reviewers: austin, simonmar, bgamari Reviewed By: simonmar, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D1112
-rw-r--r--compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs b/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs
index a255a90c7c..c63d52dda2 100644
--- a/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs
+++ b/compiler/nativeGen/RegAlloc/Graph/TrivColorable.hs
@@ -75,7 +75,7 @@ Therefore the UniqFM is made non-abstract and we use custom fold.
MS 2010/04
When converting UniqFM to use Data.IntMap, the fold cannot use UniqFM internal
-representation any more. But it is imperative that the assSqueeze stops
+representation any more. But it is imperative that the accSqueeze stops
the folding if the count gets greater or equal to maxCount. We thus convert
UniqFM to a (lazy) list, do the fold and stops if necessary, which was
the most efficient variant tried. Benchmark compiling 10-times SHA1.hs follows.