diff options
Diffstat (limited to 'compiler/GHC/CmmToAsm/CFG.hs')
-rw-r--r-- | compiler/GHC/CmmToAsm/CFG.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/CmmToAsm/CFG.hs b/compiler/GHC/CmmToAsm/CFG.hs index 5c68e77fd1..aea78e278f 100644 --- a/compiler/GHC/CmmToAsm/CFG.hs +++ b/compiler/GHC/CmmToAsm/CFG.hs @@ -251,7 +251,7 @@ filterEdges f cfg = See Note [What is shortcutting] in the control flow optimization code (GHC.Cmm.ContFlowOpt) for a slightly more in depth explanation on shortcutting. -In the native backend we shortcut jumps at the assembly level. (AsmCodeGen.hs) +In the native backend we shortcut jumps at the assembly level. ("GHC.CmmToAsm") This means we remove blocks containing only one jump from the code and instead redirecting all jumps targeting this block to the deleted blocks jump target. |