[llvm] f34fe2a - LangRef: Fix repeated word

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 17 12:54:53 PST 2022


Author: Matt Arsenault
Date: 2022-11-17T12:54:19-08:00
New Revision: f34fe2a3d21b09799bc5784a0f464d776cbaf816

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

LOG: LangRef: Fix repeated word

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index 5b407cae7997f..c2c11f643a60d 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -16739,7 +16739,7 @@ that the compiler does not constant fold the operation. Likewise, division by
 ``@llvm.canonicalize`` must preserve the equality relation. That is:
 
 - ``(@llvm.canonicalize(x) == x)`` is equivalent to ``(x == x)``
-- ``(@llvm.canonicalize(x) == @llvm.canonicalize(y))`` is equivalent to
+- ``(@llvm.canonicalize(x) == @llvm.canonicalize(y))`` is equivalent
   to ``(x == y)``
 
 Additionally, the sign of zero must be conserved:


        


More information about the llvm-commits mailing list