[clang] df45557 - Fix the Clang sphinx build

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 8 07:23:51 PDT 2023


Author: Aaron Ballman
Date: 2023-09-08T10:23:27-04:00
New Revision: df455574cb93bfa2ec7c9356b342c04abe4c5139

URL: https://github.com/llvm/llvm-project/commit/df455574cb93bfa2ec7c9356b342c04abe4c5139
DIFF: https://github.com/llvm/llvm-project/commit/df455574cb93bfa2ec7c9356b342c04abe4c5139.diff

LOG: Fix the Clang sphinx build

This addresses issues found by:
https://lab.llvm.org/buildbot/#/builders/92/builds/50402

Added: 
    

Modified: 
    clang/docs/UsersManual.rst

Removed: 
    


################################################################################
diff  --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst
index 23b762ce6f0820..25bbd72c81f7a3 100644
--- a/clang/docs/UsersManual.rst
+++ b/clang/docs/UsersManual.rst
@@ -1725,17 +1725,17 @@ floating point semantic models: precise (the default), strict, and fast.
    Details:
 
    * ``precise`` Disables optimizations that are not value-safe on
-    floating-point data, although FP contraction (FMA) is enabled
-    (``-ffp-contract=on``). This is the default behavior. This value resets
-    ``-fmath-errno`` to its target-dependent default.
+     floating-point data, although FP contraction (FMA) is enabled
+     (``-ffp-contract=on``). This is the default behavior. This value resets
+     ``-fmath-errno`` to its target-dependent default.
    * ``strict`` Enables ``-frounding-math`` and
-    ``-ffp-exception-behavior=strict``, and disables contractions (FMA).  All
-    of the ``-ffast-math`` enablements are disabled. Enables
-    ``STDC FENV_ACCESS``: by default ``FENV_ACCESS`` is disabled. This option
-    setting behaves as though ``#pragma STDC FENV_ACCESS ON`` appeared at the
-    top of the source file.
+     ``-ffp-exception-behavior=strict``, and disables contractions (FMA).  All
+     of the ``-ffast-math`` enablements are disabled. Enables
+     ``STDC FENV_ACCESS``: by default ``FENV_ACCESS`` is disabled. This option
+     setting behaves as though ``#pragma STDC FENV_ACCESS ON`` appeared at the
+     top of the source file.
    * ``fast`` Behaves identically to specifying both ``-ffast-math`` and
-    ``ffp-contract=fast``
+     ``ffp-contract=fast``
 
    Note: If your command line specifies multiple instances
    of the ``-ffp-model`` option, or if your command line option specifies


        


More information about the cfe-commits mailing list