diff options
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/StgCmmExpr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmExpr.hs b/compiler/codeGen/StgCmmExpr.hs index fdd902d8c7..cd73ec55bf 100644 --- a/compiler/codeGen/StgCmmExpr.hs +++ b/compiler/codeGen/StgCmmExpr.hs @@ -872,7 +872,7 @@ emitEnter fun = do -- The generated code will be something like this: -- -- R1 = fun -- copyout - -- if (fun & 7 != 0) goto Lcall else goto Lret + -- if (fun & 7 != 0) goto Lret else goto Lcall -- Lcall: -- call [fun] returns to Lret -- Lret: |