X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=docs%2FCommandLine.html;h=abc6eb6823eedf014a813d28656beccfe0a1f36b;hb=0c4dcccd59a551398c69e357795cfe7fb6116a86;hp=7c8c997a0f775c93a2b38ba2aadf8f4ea9078a0b;hpb=edf351f44e89c69921881f450d986b23e76987a9;p=oota-llvm.git diff --git a/docs/CommandLine.html b/docs/CommandLine.html index 7c8c997a0f7..abc6eb6823e 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -877,7 +877,7 @@ where to fill in with the cl::location attribute:

 bool DebugFlag;      // the actual value
-static cl::opt       // The parser
+static cl::opt<bool, true>       // The parser
 Debug("debug", cl::desc("Enable debug output"), cl::Hidden,
       cl::location(DebugFlag));
 
@@ -1109,7 +1109,7 @@ specifies that this option is used to capture "interpreter style" arguments. Se The cl::Prefix modifier specifies that this option prefixes its value. With 'Prefix' options, there is no equal sign that -seperates the value from the option name specified. This is useful for +separates the value from the option name specified. This is useful for processing odd arguments like '-lmalloc -L/usr/lib' in a linker tool. Here, the 'l' and 'L' options are normal string (list) options, that have the cl::Prefix modifier added to @@ -1496,7 +1496,7 @@ line options