diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-07-26 15:13:04 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-07-26 15:55:22 +0200 |
commit | 362339dd4cfd652b63c7cd1b7ea5a7486bb40944 (patch) | |
tree | 0f3ec7abbd3166e58feddadde9d6fd52a5ec3022 /compiler/nativeGen | |
parent | d31181b90cff7c791465687377cd2093627df429 (diff) | |
download | haskell-362339dd4cfd652b63c7cd1b7ea5a7486bb40944.tar.gz |
Fix note references and some typos
Diffstat (limited to 'compiler/nativeGen')
-rw-r--r-- | compiler/nativeGen/RegAlloc/Graph/Spill.hs | 2 |
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. -- |