summaryrefslogtreecommitdiffstats
path: root/clang/docs
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
commit37ff16f95100e4e45c1b9e11e173783b2e47e0ff (patch)
tree5eb0ba7598d59e93e6ebedb0203259cea06dfef1 /clang/docs
parentdb73dbcc7cfd6f7b7692027de785b8f428dc8ef2 (diff)
downloadbcm5719-llvm-37ff16f95100e4e45c1b9e11e173783b2e47e0ff.tar.gz
bcm5719-llvm-37ff16f95100e4e45c1b9e11e173783b2e47e0ff.zip
Replace non-ASCII ellipsis with "..." to silence Sphinx warnings.
llvm-svn: 292115
Diffstat (limited to 'clang/docs')
-rw-r--r--clang/docs/UsersManual.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst
index d7554a74252..513f49f82d3 100644
--- a/clang/docs/UsersManual.rst
+++ b/clang/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.
OpenPOWER on IntegriCloud