diff options
author | Andreas Klebinger <klebinger.andreas@gmx.at> | 2022-03-11 12:19:02 +0100 |
---|---|---|
committer | Andreas Klebinger <klebinger.andreas@gmx.at> | 2022-03-11 12:19:02 +0100 |
commit | e367b57f09b7375a5551df50c61fcdcc0912c9dc (patch) | |
tree | e08f26a1009e785cd0cba40c323ceeadd019fdd0 /docs/users_guide | |
parent | 844cf1e14fe031c9ed7597b00a1183ad9b1ccc0a (diff) | |
download | haskell-wip/andreask/prof-late.tar.gz |
Rename -fprof-late-ccs to -fprof-latewip/andreask/prof-late
Diffstat (limited to 'docs/users_guide')
-rw-r--r-- | docs/users_guide/9.4.1-notes.rst | 2 | ||||
-rw-r--r-- | docs/users_guide/profiling.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/users_guide/9.4.1-notes.rst b/docs/users_guide/9.4.1-notes.rst index 0f92ab6eb5..a2cced7294 100644 --- a/docs/users_guide/9.4.1-notes.rst +++ b/docs/users_guide/9.4.1-notes.rst @@ -42,7 +42,7 @@ Compiler - New :ghc-flag:`-Wredundant-strictness-flags` that checks for strictness flags (``!``) applied to unlifted types, which are always strict. -- New :ghc-flag:`-fprof-late-ccs` that adds automatic CCS annotations to all +- New :ghc-flag:`-fprof-late` that adds automatic CCS annotations to all top level functions *after* core optimisation have been run. - A new type of plugin: defaulting plugins. These plugins can propose diff --git a/docs/users_guide/profiling.rst b/docs/users_guide/profiling.rst index 9a905ba3de..b9b5d371f9 100644 --- a/docs/users_guide/profiling.rst +++ b/docs/users_guide/profiling.rst @@ -438,10 +438,10 @@ compiled program. or the :rts-flag:`-xc` RTS flag (:ref:`rts-options-debugging`) for more details. -.. ghc-flag:: -fprof-late-ccs +.. ghc-flag:: -fprof-late :shortdesc: Auto-add ``SCC``\\ s to all top level bindings *after* the optimizer has run. :type: dynamic - :reverse: -fno-prof-late-ccs + :reverse: -fno-prof-late :category: :since: 9.4.1 |