TableGen: Generate an enum for all named Operand types in tblgen'd InstrInfo.
[oota-llvm.git] / docs / CommandLine.rst
index 9b77a9890826c3e132d482ecc684461c0a00c199..4c84d23297b45c789561630e27365a861f0824fc 100644 (file)
@@ -925,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<bool> 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: