From 3128015782709f0e16b1935b9834771047950704 Mon Sep 17 00:00:00 2001 From: Mikhail Glushenkov Date: Mon, 28 Sep 2009 01:28:26 +0000 Subject: [PATCH] Regenerate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82958 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CompilerDriver.html | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/docs/CompilerDriver.html b/docs/CompilerDriver.html index 5830a30833d..9bc08aca163 100644 --- a/docs/CompilerDriver.html +++ b/docs/CompilerDriver.html @@ -438,15 +438,21 @@ user. Example: (not_empty "o").
  • empty - The opposite of not_empty. Equivalent to (not (not_empty X)). Provided for convenience.
  • +
  • single_input_file - Returns true if there was only one input file +provided on the command-line. Used without arguments: +(single_input_file).
  • +
  • multiple_input_files - Equivalent to (not (single_input_file)) (the +case of zero input files is considered an error).
  • default - Always evaluates to true. Should always be the last test in the case expression.
  • -
  • and - A standard logical combinator that returns true iff all -of its arguments return true. Used like this: (and (test1), -(test2), ... (testN)). Nesting of and and or is allowed, -but not encouraged.
  • -
  • or - Another logical combinator that returns true only if any -one of its arguments returns true. Example: (or (test1), -(test2), ... (testN)).
  • +
  • and - A standard binary logical combinator that returns true iff all of +its arguments return true. Used like this: (and (test1), (test2), +... (testN)). Nesting of and and or is allowed, but not +encouraged.
  • +
  • or - A binary logical combinator that returns true iff any of its +arguments returns true. Example: (or (test1), (test2), ... (testN)).
  • +
  • not - Standard unary logical combinator that negates its +argument. Example: (not (or (test1), (test2), ... (testN))).