summaryrefslogtreecommitdiff
path: root/compiler/cmm
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-01-24 14:54:31 +0100
committerGabor Greif <ggreif@gmail.com>2017-01-25 12:49:23 +0100
commite4ae78ae118f5b009a87b71f9ec21fb00962283a (patch)
treeb7d52b11fac094b1f5e403f317ea9489550213aa /compiler/cmm
parent675b54f399a9ef131183528b50a8aa4a06209f74 (diff)
downloadhaskell-e4ae78ae118f5b009a87b71f9ec21fb00962283a.tar.gz
Typos in comments [ci skip]
Diffstat (limited to 'compiler/cmm')
-rw-r--r--compiler/cmm/CmmSink.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cmm/CmmSink.hs b/compiler/cmm/CmmSink.hs
index acac1c1ede..afa77d5bc4 100644
--- a/compiler/cmm/CmmSink.hs
+++ b/compiler/cmm/CmmSink.hs
@@ -138,7 +138,7 @@ type Assignment = (LocalReg, CmmExpr, AbsMem)
-- the RHS of the assignment.
type Assignments = [Assignment]
- -- A sequence of assignements; kept in *reverse* order
+ -- A sequence of assignments; kept in *reverse* order
-- So the list [ x=e1, y=e2 ] means the sequence of assignments
-- y = e2
-- x = e1