From 95db1e7fb9292daf70fedf02b5efafeabf3ea33e Mon Sep 17 00:00:00 2001 From: Paul Walker Date: Mon, 1 Jun 2020 10:09:58 +0000 Subject: [FileCheck] Implement * and / operators for ExpressionValue. Subscribers: arichardson, hiraditya, thopre, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D80915 --- llvm/docs/CommandGuide/FileCheck.rst | 2 ++ 1 file changed, 2 insertions(+) (limited to 'llvm/docs/CommandGuide') 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 ``()`` 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. * ```` is a comma seperated list of expressions. -- cgit v1.1