diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2019-06-19 14:59:43 +0300 |
---|---|---|
committer | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2019-06-19 15:00:11 +0300 |
commit | 8584430e1d5f45fec33c783fc3bd6b781fad68de (patch) | |
tree | 8c56fb650916050d454e762322614f64b46b3e98 /compiler/cmm | |
parent | 4549cadf855d14a6b737ceddf4e474faf8e343ff (diff) | |
download | haskell-8584430e1d5f45fec33c783fc3bd6b781fad68de.tar.gz |
Fix a Note name in CmmNode
("Continuation BlockIds" is referenced in CmmProcPoint)
[skip ci]
Diffstat (limited to 'compiler/cmm')
-rw-r--r-- | compiler/cmm/CmmNode.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/cmm/CmmNode.hs b/compiler/cmm/CmmNode.hs index 7ecfa468a2..988610fda4 100644 --- a/compiler/cmm/CmmNode.hs +++ b/compiler/cmm/CmmNode.hs @@ -114,7 +114,7 @@ data CmmNode e x where cml_cont :: Maybe Label, -- Label of continuation (Nothing for return or tail call) -- - -- Note [Continuation BlockId]: these BlockIds are called + -- Note [Continuation BlockIds]: these BlockIds are called -- Continuation BlockIds, and are the only BlockIds that can -- occur in CmmExprs, namely as (CmmLit (CmmBlock b)) or -- (CmmStackSlot (Young b) _). |