diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-09-28 01:16:07 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-09-28 01:16:07 +0000 |
commit | d66e8de8385597688e0456307861e4f8173258fd (patch) | |
tree | 770aa58e57fb9a13ed1c9a9ba26533191800ffdd /tools | |
parent | 9d7a2dc2840179b72be189b37ee50863af95cab7 (diff) | |
download | external_llvm-d66e8de8385597688e0456307861e4f8173258fd.zip external_llvm-d66e8de8385597688e0456307861e4f8173258fd.tar.gz external_llvm-d66e8de8385597688e0456307861e4f8173258fd.tar.bz2 |
Document the 'not' combinator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/doc/LLVMC-Reference.rst | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/tools/llvmc/doc/LLVMC-Reference.rst b/tools/llvmc/doc/LLVMC-Reference.rst index 3014a3a..7e609a7 100644 --- a/tools/llvmc/doc/LLVMC-Reference.rst +++ b/tools/llvmc/doc/LLVMC-Reference.rst @@ -461,14 +461,17 @@ use TableGen inheritance instead. - ``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)))``. + Writing a tool description |