diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2016-11-22 14:07:45 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2016-11-22 14:07:45 +0000 |
commit | 9d494aac8ef1dcd5379a34d442121852318dcff4 (patch) | |
tree | b1568cdaea633865012a16ead776d107a04500ae /gcc | |
parent | 3e0201f014abc0cca2c6b0286b3cd7f552b30f19 (diff) | |
download | gcc-9d494aac8ef1dcd5379a34d442121852318dcff4.zip gcc-9d494aac8ef1dcd5379a34d442121852318dcff4.tar.gz gcc-9d494aac8ef1dcd5379a34d442121852318dcff4.tar.bz2 |
builtin-shuffle-1.c (V): Use 4 * int in vector.
gcc/testsuite/
* c-c++-common/builtin-shuffle-1.c (V): Use 4 * int in vector.
From-SVN: r242697
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/c-c++-common/builtin-shuffle-1.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a9ef58c..8006634 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-11-22 Georg-Johann Lay <avr@gjlay.de> + + * c-c++-common/builtin-shuffle-1.c (V): Use 4 * int in vector. + 2016-11-22 Kyrylo Tkachov <kyrylo.tkachov@arm.com> PR target/78439 diff --git a/gcc/testsuite/c-c++-common/builtin-shuffle-1.c b/gcc/testsuite/c-c++-common/builtin-shuffle-1.c index 30fd690..eae2cff 100644 --- a/gcc/testsuite/c-c++-common/builtin-shuffle-1.c +++ b/gcc/testsuite/c-c++-common/builtin-shuffle-1.c @@ -1,7 +1,7 @@ /* PR c++/78089 */ /* { dg-do run } */ -typedef int V __attribute__((vector_size (16))); +typedef int V __attribute__((vector_size (4 * __SIZEOF_INT__))); V a, b, c; int |