Show inlined function in the header of 'Inlining done' message
authorsimonpj@microsoft.com <unknown>
Tue, 16 Oct 2007 12:45:35 +0000 (12:45 +0000)
committersimonpj@microsoft.com <unknown>
Tue, 16 Oct 2007 12:45:35 +0000 (12:45 +0000)
compiler/simplCore/Simplify.lhs

index d05e4a1..be6eba3 100644 (file)
@@ -1025,7 +1025,7 @@ completeCall env var cont
            Just unfolding      -- There is an inlining!
              ->  do { tick (UnfoldingDone var)
                     ; (if dopt Opt_D_dump_inlinings dflags then
-                          pprTrace "Inlining done" (vcat [
+                          pprTrace ("Inlining done" ++ showSDoc (ppr var)) (vcat [
                                text "Before:" <+> ppr var <+> sep (map pprParendExpr args),
                                text "Inlined fn: " <+> nest 2 (ppr unfolding),
                                text "Cont:  " <+> ppr call_cont])