]> granicus.if.org Git - clang/commitdiff
Replace non-ASCII ellipsis with "..." to silence Sphinx warnings.
authorAaron Ballman <aaron@aaronballman.com>
Mon, 16 Jan 2017 13:42:21 +0000 (13:42 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Mon, 16 Jan 2017 13:42:21 +0000 (13:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@292115 91177308-0d34-0410-b5e6-96231b3b80d8

docs/UsersManual.rst

index d7554a74252a467b9588740d4b57311bc24fdf44..513f49f82d3c0fde8a8e98c7274e7448074ecea4 100644 (file)
@@ -2235,7 +2235,7 @@ An example is the subgroup operations such as `intel_sub_group_shuffle
 
      // 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 optimized to the following equivalent code:
 
    .. code-block:: c
 
-     r1 = 
+     r1 = ...
      if (!r0)
        // Incorrect functionality! The data in r1
        // have not been computed by all threads yet.