From: Aaron Ballman Date: Mon, 16 Jan 2017 13:42:21 +0000 (+0000) Subject: Replace non-ASCII ellipsis with "..." to silence Sphinx warnings. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59a3b2aad4da8afefdc0371a67251e6258b5efec;p=clang 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 --- 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.