X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FCommandLine.rst;h=4c84d23297b45c789561630e27365a861f0824fc;hb=1b0dc64919e947bb4f4677b138c734e33061f7c4;hp=263a025f696f42bb70dd07929022fd89f22bc0be;hpb=61e01721978af4c2979c4b9153e56e72eb6389fb;p=oota-llvm.git diff --git a/docs/CommandLine.rst b/docs/CommandLine.rst index 263a025f696..4c84d23297b 100644 --- a/docs/CommandLine.rst +++ b/docs/CommandLine.rst @@ -618,6 +618,8 @@ would yield the help output: -help - display available options (-help-hidden for more) -o - Specify output filename +.. _grouping options into categories: + Grouping options into categories -------------------------------- @@ -923,12 +925,13 @@ This section describes the basic attributes that you can specify on options. .. code-block:: c++ - cl::opt<**bool**> Quiet("quiet"); + cl::opt Quiet("quiet"); .. _cl::desc(...): * The **cl::desc** attribute specifies a description for the option to be - shown in the ``-help`` output for the program. + shown in the ``-help`` output for the program. This attribute supports + multi-line descriptions with lines separated by '\n'. .. _cl::value_desc: