summaryrefslogtreecommitdiffstats
path: root/docs/UsersManual.rst
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2017-01-16 13:42:21 +0000
committerAaron Ballman <aaron@aaronballman.com>2017-01-16 13:42:21 +0000
commit59a3b2aad4da8afefdc0371a67251e6258b5efec (patch)
treeb227ab715a93d6d6a4af3d77089caba644522d46 /docs/UsersManual.rst
parentfae0c15ab2dceb31c9ff4c8e384a0ba4780988f4 (diff)
Replace non-ASCII ellipsis with "..." to silence Sphinx warnings.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@292115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/UsersManual.rst')
-rw-r--r--docs/UsersManual.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/UsersManual.rst b/docs/UsersManual.rst
index d7554a7425..513f49f82d 100644
--- a/docs/UsersManual.rst
+++ b/docs/UsersManual.rst
@@ -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.