diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-10-10 23:33:18 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2018-10-10 23:33:18 +0000 |
commit | cee53ce4f2e4aa78113a26bf6cadd2c84e109a03 (patch) | |
tree | 9857966e5f7826905428311d2671f4ac3704cb90 | |
parent | 6c67662816d9c99567b43d039ced9e67f3b287cf (diff) | |
download | bcm5719-llvm-cee53ce4f2e4aa78113a26bf6cadd2c84e109a03.tar.gz bcm5719-llvm-cee53ce4f2e4aa78113a26bf6cadd2c84e109a03.zip |
Update documentation to indicate that profile remapping support is only
implemented for the new pass manager so far.
llvm-svn: 344201
-rw-r--r-- | clang/docs/UsersManual.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index 438ef46a45e..6d321952cf8 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -1858,6 +1858,12 @@ profile data matching the updated program. .. note:: + Profile data remapping support is currently only implemented for LLVM's + new pass manager, which can be enabled with + ``-fexperimental-new-pass-manager``. + +.. note:: + Profile data remapping is currently only supported for C++ mangled names following the Itanium C++ ABI mangling scheme. This covers all C++ targets supported by Clang other than Windows. |