diff options
author | Gabor Greif <ggreif@gmail.com> | 2018-01-17 14:05:48 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2018-01-17 14:14:53 +0100 |
commit | c65104e1a6875f7879db87877848cc35363c1bf3 (patch) | |
tree | ac290e4dc3ccd778d9e6565ffd73e93dc6d2d288 /compiler/simplCore | |
parent | cf2c029ccdb967441c85ffb66073974fbdb20c20 (diff) | |
download | haskell-c65104e1a6875f7879db87877848cc35363c1bf3.tar.gz |
Typos in comments
Diffstat (limited to 'compiler/simplCore')
-rw-r--r-- | compiler/simplCore/CallArity.hs | 2 | ||||
-rw-r--r-- | compiler/simplCore/OccurAnal.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/simplCore/CallArity.hs b/compiler/simplCore/CallArity.hs index 4935db076c..64684f3c44 100644 --- a/compiler/simplCore/CallArity.hs +++ b/compiler/simplCore/CallArity.hs @@ -406,7 +406,7 @@ published papers on Call Arity describe it. In practice, there are thunks that do a just little work, such as pattern-matching on a variable, and the benefits of eta-expansion likely -oughtweigh the cost of doing that repeatedly. Therefore, this implementation of +outweigh the cost of doing that repeatedly. Therefore, this implementation of Call Arity considers everything that is not cheap (`exprIsCheap`) as a thunk. Note [Call Arity and Join Points] diff --git a/compiler/simplCore/OccurAnal.hs b/compiler/simplCore/OccurAnal.hs index b0987d5da0..b7fc977c9f 100644 --- a/compiler/simplCore/OccurAnal.hs +++ b/compiler/simplCore/OccurAnal.hs @@ -2088,7 +2088,7 @@ type GlobalScruts = IdSet -- See Note [Binder swap on GlobalId scrutinees] -- x = (p,q) -- Don't inline p or q -- y = /\a -> (p a, q a) -- Still don't inline p or q -- z = f (p,q) -- Do inline p,q; it may make a rule fire --- So OccEncl tells enought about the context to know what to do when +-- So OccEncl tells enough about the context to know what to do when -- we encounter a constructor application or PAP. data OccEncl |