diff options
Diffstat (limited to 'clang/docs/UsersManual.rst')
-rw-r--r-- | clang/docs/UsersManual.rst | 4 |
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. |