[clang] f66596c - [clang][docs] Add escape code to fix missing '*' in reduction operation list

Simon Pilgrim via cfe-commits cfe-commits at lists.llvm.org
Sun May 15 04:32:27 PDT 2022


Author: Simon Pilgrim
Date: 2022-05-15T12:32:11+01:00
New Revision: f66596c94f772e214fd9d96cc78f7fec17209281

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

LOG: [clang][docs] Add escape code to fix missing '*' in reduction operation list

Added: 
    

Modified: 
    clang/docs/LanguageExtensions.rst

Removed: 
    


################################################################################
diff  --git a/clang/docs/LanguageExtensions.rst b/clang/docs/LanguageExtensions.rst
index 3cdac02d8d3fb..44848a20dca3c 100644
--- a/clang/docs/LanguageExtensions.rst
+++ b/clang/docs/LanguageExtensions.rst
@@ -647,7 +647,7 @@ Let ``VT`` be a vector type and ``ET`` the element type of ``VT``.
                                          is a NaN, return the other argument. If both arguments are
                                          NaNs, fmax() return a NaN.
  ET __builtin_reduce_add(VT a)           \+                                                               integer and floating point types
- ET __builtin_reduce_mul(VT a)           *                                                                integer and floating point types
+ ET __builtin_reduce_mul(VT a)           \*                                                               integer and floating point types
  ET __builtin_reduce_and(VT a)           &                                                                integer types
  ET __builtin_reduce_or(VT a)            \|                                                               integer types
  ET __builtin_reduce_xor(VT a)           ^                                                                integer types


        


More information about the cfe-commits mailing list