diff options
author | Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> | 2017-11-16 11:58:53 +0000 |
---|---|---|
committer | Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> | 2017-11-16 11:58:53 +0000 |
commit | 115902984185e7056652c58b2069d6253517c9b9 (patch) | |
tree | f62be0e56cd1e065ea16e2d1ce4e6011ff8b8300 /gcc/doc | |
parent | 76a2e9c7ffd7d7a426ab9c614c7845fe265c4fe7 (diff) | |
download | gcc-115902984185e7056652c58b2069d6253517c9b9.tar.gz |
Merge branches/gcc-7-branch rev 254792.
Change-Id: I67684002abf84c64d0e873a8044b211923c56499
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/extend.texi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 8b61c8047b3..ba309d01a9b 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -9473,6 +9473,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)}. |