[llvm] ef64361 - [NFC][LangRef] Update description for FuncFlags
via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 11 22:04:03 PDT 2021
Author: modimo
Date: 2021-10-11T22:03:53-07:00
New Revision: ef643617b813dd2101a09888d89091f9b143ef83
URL: https://github.com/llvm/llvm-project/commit/ef643617b813dd2101a09888d89091f9b143ef83
DIFF: https://github.com/llvm/llvm-project/commit/ef643617b813dd2101a09888d89091f9b143ef83.diff
LOG: [NFC][LangRef] Update description for FuncFlags
Add the additional flags from D36850 as well as noInline/alwaysInline from previous changes.
Reviewed By: tejohnson
Differential Revision: https://reviews.llvm.org/D111600
Added:
Modified:
llvm/docs/LangRef.rst
Removed:
################################################################################
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 3f6349bb8afb2..23b98afa945e0 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -7471,7 +7471,7 @@ The optional ``FuncFlags`` field looks like:
.. code-block:: text
- funcFlags: (readNone: 0, readOnly: 0, noRecurse: 0, returnDoesNotAlias: 0)
+ funcFlags: (readNone: 0, readOnly: 0, noRecurse: 0, returnDoesNotAlias: 0, noInline: 0, alwaysInline: 0, noUnwind: 1, mayThrow: 0, hasUnknownCall: 0)
If unspecified, flags are assumed to hold the conservative ``false`` value of
``0``.
More information about the llvm-commits
mailing list