r292115 - Replace non-ASCII ellipsis with "..." to silence Sphinx warnings.

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 16 05:42:22 PST 2017


Author: aaronballman
Date: Mon Jan 16 07:42:21 2017
New Revision: 292115

URL: http://llvm.org/viewvc/llvm-project?rev=292115&view=rev
Log:
Replace non-ASCII ellipsis with "..." to silence Sphinx warnings.

Modified:
    cfe/trunk/docs/UsersManual.rst

Modified: cfe/trunk/docs/UsersManual.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/UsersManual.rst?rev=292115&r1=292114&r2=292115&view=diff
==============================================================================
--- cfe/trunk/docs/UsersManual.rst (original)
+++ cfe/trunk/docs/UsersManual.rst Mon Jan 16 07:42:21 2017
@@ -2235,7 +2235,7 @@ An example is the subgroup operations su
 
      // Define custom my_sub_group_shuffle(data, c)
      // that makes use of intel_sub_group_shuffle
-     r1 = … 
+     r1 = ... 
      if (r0) r1 = computeA();
      // Shuffle data from r1 into r3
      // of threads id r2.
@@ -2246,7 +2246,7 @@ with non-SPMD semantics this is optimize
 
    .. code-block:: c
 
-     r1 = …
+     r1 = ...
      if (!r0)
        // Incorrect functionality! The data in r1
        // have not been computed by all threads yet.




More information about the cfe-commits mailing list