diff options
author | Serge Pavlov <sepavloff@gmail.com> | 2025-04-19 02:05:28 +0700 |
---|---|---|
committer | Serge Pavlov <sepavloff@gmail.com> | 2025-04-20 17:32:49 +0000 |
commit | ad480e9de4015a9acc17b80d9f2d6ce5f39d13e5 (patch) | |
tree | 80aace44e1f911c6ce47a5cbe2d02dca300f98e1 | |
parent | add26fef01a93ddf81cd3410b13b1b2c66a5f9e9 (diff) | |
download | llvm-users/spavloff/bundles2.zip llvm-users/spavloff/bundles2.tar.gz llvm-users/spavloff/bundles2.tar.bz2 |
Small changes in documentationusers/spavloff/bundles2
-rw-r--r-- | llvm/docs/LangRef.rst | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 9145c4c..8252971 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -3085,8 +3085,9 @@ floating-point control modes and the treatment of status bits respectively. An operand bundle tagged with "fp.control" contains information about the control modes used for the operation execution. Operands specified in this bundle represent particular options. Currently, only rounding mode is supported. -It is represented by a metadata string value, which specifies the rounding mode -to be used for the operation evaluation. Possible values are: + +Rounding mode is represented by a metadata string value, which specifies the +the mode used for the operation evaluation. Possible values are: :: @@ -3097,10 +3098,10 @@ to be used for the operation evaluation. Possible values are: "rmm" - to nearest, ties away from zero "dyn" - rounding mode is taken from control register -If "fp.control" is absent, the default rounding rounding mode is taken from the -control register (dynamic rounding). In the particular case of -:ref:`default floating-point environment <floatenv>`, it must be rounding to -nearest, ties to even. +Only one such value may be specified. If "fp.control" is absent, the default +rounding rounding mode is taken from the control register (dynamic rounding). +In the particular case of :ref:`default floating-point environment <floatenv>`, +the operation uses rounding to nearest, ties to even. An operand bundle tagged with "fp.except" may be associated with operations that can read or write floating-point exception flags. It contains a single |