aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/CommandGuide/FileCheck.rst
diff options
context:
space:
mode:
authorPaul Walker <paul.walker@arm.com>2020-06-01 10:09:58 +0000
committerPaul Walker <paul.walker@arm.com>2020-06-17 09:39:17 +0000
commit95db1e7fb9292daf70fedf02b5efafeabf3ea33e (patch)
treec34921c9fce8970aebab803357bad61d4ebf7d94 /llvm/docs/CommandGuide/FileCheck.rst
parent16ad6eeb94ff0619288fb9b3a2287076d5f32ae1 (diff)
downloadllvm-95db1e7fb9292daf70fedf02b5efafeabf3ea33e.zip
llvm-95db1e7fb9292daf70fedf02b5efafeabf3ea33e.tar.gz
llvm-95db1e7fb9292daf70fedf02b5efafeabf3ea33e.tar.bz2
[FileCheck] Implement * and / operators for ExpressionValue.
Subscribers: arichardson, hiraditya, thopre, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D80915
Diffstat (limited to 'llvm/docs/CommandGuide/FileCheck.rst')
-rw-r--r--llvm/docs/CommandGuide/FileCheck.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst
index 0f72b41..1e69c76 100644
--- a/llvm/docs/CommandGuide/FileCheck.rst
+++ b/llvm/docs/CommandGuide/FileCheck.rst
@@ -709,8 +709,10 @@ The syntax of a function call is ``<name>(<arguments>)`` where:
* ``name`` is a predefined string literal. Accepted values are:
* add - Returns the sum of its two operands.
+ * div - Returns the quotient of its two operands.
* max - Returns the largest of its two operands.
* min - Returns the smallest of its two operands.
+ * mul - Returns the product of its two operands.
* sub - Returns the difference of its two operands.
* ``<arguments>`` is a comma seperated list of expressions.