Add release notes for PGO flag changes.
authorDiego Novillo <dnovillo@google.com>
Fri, 14 Aug 2015 15:46:59 +0000 (15:46 +0000)
committerDiego Novillo <dnovillo@google.com>
Fri, 14 Aug 2015 15:46:59 +0000 (15:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_37@245061 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ReleaseNotes.rst

index bfd33d71be2c3fb1cf7d35496dd86de0c72ca05f..8af1e7e6d3c25e2c00ca6668044e43e983508d01 100644 (file)
@@ -136,6 +136,20 @@ OpenCL C Language Changes in Clang
 
 ...
 
+Profile Guided Optimization
+---------------------------
+
+Clang now accepts GCC-compatible flags for profile guided optimization (PGO).
+You can now use ``-fprofile-generate=<dir>``, ``-fprofile-use=<dir>``,
+``-fno-profile-generate`` and ``-fno-profile-use``. These flags have the
+same semantics as their GCC counterparts. However, the generated profile
+is still LLVM-specific. PGO profiles generated with Clang cannot be used
+by GCC and vice-versa.
+
+Clang now emits function entry counts in profile-instrumented binaries.
+This has improved the computation of weights and frequencies in
+profile analysis.
+
 OpenMP Support
 --------------
 OpenMP 3.1 is fully supported, but disabled by default. To enable it, please use