Add two points to release notes about recent command line library changes.
authorAndrew Trick <atrick@apple.com>
Tue, 7 May 2013 17:34:35 +0000 (17:34 +0000)
committerAndrew Trick <atrick@apple.com>
Tue, 7 May 2013 17:34:35 +0000 (17:34 +0000)
Patch by Dan Liew!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181335 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandLine.rst
docs/ReleaseNotes.rst

index 263a025f696f42bb70dd07929022fd89f22bc0be..9b77a9890826c3e132d482ecc684461c0a00c199 100644 (file)
@@ -618,6 +618,8 @@ would yield the help output:
     -help             - display available options (-help-hidden for more)
     -o <filename>     - Specify output filename
 
+.. _grouping options into categories:
+
 Grouping options into categories
 --------------------------------
 
index 3689af18093f98da711f4354d569dcc1b7cd79d9..cb60df73d9364345bfe1f1e1b04a364dffc1b3ee 100644 (file)
@@ -73,6 +73,13 @@ Non-comprehensive list of changes in this release
 * MCJIT now supports exception handling. Support for it in the old jit will be
   removed in the 3.4 release.
 
+* Command line options can now be grouped into categories which are shown in
+  the output of ``-help``. See :ref:`grouping options into categories`.
+
+* The appearance of command line options in ``-help`` that are inherited by
+  linking with libraries that use the LLVM Command line support library can now
+  be modified at runtime. See :ref:`cl::getRegisteredOptions`.
+
 * ... next change ...
 
 .. NOTE