[llvm] 3fdb348 - [LangRef] Fix some formatting issues (NFC) (#126224)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 7 05:35:28 PST 2025


Author: Benjamin Maxwell
Date: 2025-02-07T13:35:22Z
New Revision: 3fdb3482439b2957abc176ae10522df3df322709

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

LOG: [LangRef] Fix some formatting issues (NFC) (#126224)

Fixes codeblock and inline code formatting for the `llvm.modf.*`
intrinsic.

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 5f0ae5ce8614c63..f57c29ccdd588d7 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -16162,9 +16162,11 @@ trapping or setting ``errno``.
 The first result is the fractional part of the operand and the second result is
 the integral part of the operand. Both results have the same sign as the operand.
 
-Not including exceptional inputs (listed below), `llvm.modf.*` is semantically
+Not including exceptional inputs (listed below), ``llvm.modf.*`` is semantically
 equivalent to:
 
+::
+
   %fp = frem <fptype> %x, 1.0  ; Fractional part
   %ip = fsub <fptype> %x, %fp  ; Integral part
 


        


More information about the llvm-commits mailing list