re PR c/82234 (__builtin_shuffle is not in the keyword index)
authorJakub Jelinek <jakub@redhat.com>
Mon, 18 Sep 2017 18:49:41 +0000 (20:49 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 18 Sep 2017 18:49:41 +0000 (20:49 +0200)
PR c/82234
* doc/extend.texi: Add @findex entry for __builtin_shuffle.

From-SVN: r252947

gcc/ChangeLog
gcc/doc/extend.texi

index cca1a2513df19300093f09db843747f94273d00b..283c15937ff419c33a51fdfabbaee4a0654cd44b 100644 (file)
@@ -1,3 +1,8 @@
+2017-09-18  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c/82234
+       * doc/extend.texi: Add @findex entry for __builtin_shuffle.
+
 2017-09-18  Richard Sandiford  <richard.sandiford@linaro.org>
            Alan Hayward  <alan.hayward@arm.com>
            David Sherwood  <david.sherwood@arm.com>
index aa780a162e10f9f43a23a8adf971a91d5d3d055d..04c497a1e2f140cc51d69cd724e2ac66446c8960 100644 (file)
@@ -9683,6 +9683,7 @@ For mixed operations between a scalar @code{s} and a vector @code{v},
 @code{s && v} is equivalent to @code{s?v!=0:0} (the evaluation is
 short-circuit) and @code{v && s} is equivalent to @code{v!=0 & (s?-1:0)}.
 
+@findex __builtin_shuffle
 Vector shuffling is available using functions
 @code{__builtin_shuffle (vec, mask)} and
 @code{__builtin_shuffle (vec0, vec1, mask)}.