From: Mikhail Glushenkov Date: Sun, 25 Oct 2009 01:44:24 +0000 (+0000) Subject: Regenerate. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0a018d3d8ce1c1f6d1ae578114c7dfc12ef84444;p=oota-llvm.git Regenerate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85031 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CompilerDriver.html b/docs/CompilerDriver.html index 5f62200d460..77528351ca5 100644 --- a/docs/CompilerDriver.html +++ b/docs/CompilerDriver.html @@ -33,11 +33,12 @@ The ReST source lives in the directory 'tools/llvmc/doc'. -->
  • Language map
  • -
  • More advanced topics @@ -307,13 +308,13 @@ separate option groups syntactically.

    -std=c99. It is also allowed to use spaces instead of the equality sign: -std c99. At most one occurrence is allowed.
  • parameter_list_option - same as the above, but more than one option -occurrence is allowed.
  • +occurence is allowed.
  • prefix_option - same as the parameter_option, but the option name and argument do not have to be separated. Example: -ofile. This can be also specified as -o file; however, -o=file will be parsed incorrectly (=file will be interpreted as option value). At most one occurrence is allowed.
  • -
  • prefix_list_option - same as the above, but more than one occurrence of +
  • prefix_list_option - same as the above, but more than one occurence of the option is allowed; example: -lm -lpthread.
  • alias_option - a special option type for creating aliases. Unlike other option types, aliases are not allowed to have any properties besides the @@ -343,8 +344,9 @@ output).
  • output.
  • multi_val n - this option takes n arguments (can be useful in some special cases). Usage example: (parameter_list_option "foo", (multi_val -3)). Only list options can have this attribute; you can, however, use -the one_or_more and zero_or_one properties.
  • +3)); the command-line syntax is '-foo a b c'. Only list options can have +this attribute; you can, however, use the one_or_more, zero_or_one +and required properties.
  • init - this option has a default value, either a string (if it is a parameter), or a boolean (if it is a switch; boolean constants are called true and false). List options can't have this attribute. Usage @@ -417,8 +419,15 @@ readability. It is usually better to split tool descriptions and/or use TableGen inheritance instead.