summaryrefslogtreecommitdiff
path: root/compiler/nativeGen
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-07-26 15:13:04 +0200
committerGabor Greif <ggreif@gmail.com>2017-07-26 15:55:22 +0200
commit362339dd4cfd652b63c7cd1b7ea5a7486bb40944 (patch)
tree0f3ec7abbd3166e58feddadde9d6fd52a5ec3022 /compiler/nativeGen
parentd31181b90cff7c791465687377cd2093627df429 (diff)
downloadhaskell-362339dd4cfd652b63c7cd1b7ea5a7486bb40944.tar.gz
Fix note references and some typos
Diffstat (limited to 'compiler/nativeGen')
-rw-r--r--compiler/nativeGen/RegAlloc/Graph/Spill.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/RegAlloc/Graph/Spill.hs b/compiler/nativeGen/RegAlloc/Graph/Spill.hs
index 0014ab6fed..b86b143f59 100644
--- a/compiler/nativeGen/RegAlloc/Graph/Spill.hs
+++ b/compiler/nativeGen/RegAlloc/Graph/Spill.hs
@@ -34,7 +34,7 @@ import qualified Data.IntSet as IntSet
-- TODO: See if we can split some of the live ranges instead of just globally
-- spilling the virtual reg. This might make the spill cleaner's job easier.
--
--- TODO: On CISCy x86 and x86_64 we don't nessesarally have to add a mov instruction
+-- TODO: On CISCy x86 and x86_64 we don't necessarily have to add a mov instruction
-- when making spills. If an instr is using a spilled virtual we may be able to
-- address the spill slot directly.
--