diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-10 12:25:14 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-10 12:25:14 +0000 |
commit | 302aa93f35d4a17317f1b4966e310d1670650df6 (patch) | |
tree | 99a541cfae8460c8779775669973c2dcc49e47d8 | |
parent | 2a6f2681ad53899869473343e845bee189a809c3 (diff) | |
download | haskell-wip/fix-typo-mp.tar.gz |
Fix copy-pasto in prof-late-ccs docswip/fix-typo-mp
-rw-r--r-- | docs/users_guide/profiling.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/profiling.rst b/docs/users_guide/profiling.rst index 87509d6331..495d2b8db0 100644 --- a/docs/users_guide/profiling.rst +++ b/docs/users_guide/profiling.rst @@ -441,14 +441,14 @@ compiled program. .. ghc-flag:: -fprof-late-ccs :shortdesc: Auto-add ``SCC``\\ s to all top level bindings *after* the optimizer has run. :type: dynamic - :reverse: -fno-prof-auto + :reverse: -fno-prof-late-ccs :category: Adds an automatic ``SCC`` annotation to all top level bindings late in the core pipeline after the optimizer has run. This means these cost centres will not interfere with core-level optimizations and the resulting profile will be closer to the performance profile of an optimized non-profiled executable. - While the results of this are generally very good some of the compiler internal names + While the results of this are generally very informative some of the compiler internal names will leak into the profile. .. ghc-flag:: -fprof-cafs |