diff options
author | Josh Conner <jconner@apple.com> | 2005-06-03 16:07:29 +0000 |
---|---|---|
committer | Josh Conner <jconner@gcc.gnu.org> | 2005-06-03 16:07:29 +0000 |
commit | 83cd747fd944f49180cc60ddb1c3a9f889fb6b63 (patch) | |
tree | e2b325ee6c6e1530576eb5e216ca8cd62521ad78 /gcc | |
parent | 548e34cdb7391d27e3d2342160bd417261b907a4 (diff) | |
download | gcc-83cd747fd944f49180cc60ddb1c3a9f889fb6b63.zip gcc-83cd747fd944f49180cc60ddb1c3a9f889fb6b63.tar.gz gcc-83cd747fd944f49180cc60ddb1c3a9f889fb6b63.tar.bz2 |
ppc-vector-memcpy.c (foo): Use non-zero values for all entries in initializer.
* gcc.dg/ppc-vector-memcpy.c (foo): Use non-zero values for
all entries in initializer.
From-SVN: r100540
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/ppc-vector-memcpy.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4129b3f..2b3cbc2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-06-03 Josh Conner <jconner@apple.com> + + * gcc.dg/ppc-vector-memcpy.c (foo): Use non-zero values for + all entries in initializer. + 2005-06-03 Richard Guenther <rguenth@gcc.gnu.org> PR middle-end/21858 diff --git a/gcc/testsuite/gcc.dg/ppc-vector-memcpy.c b/gcc/testsuite/gcc.dg/ppc-vector-memcpy.c index 630ff2e..99ca85e 100644 --- a/gcc/testsuite/gcc.dg/ppc-vector-memcpy.c +++ b/gcc/testsuite/gcc.dg/ppc-vector-memcpy.c @@ -5,6 +5,6 @@ void foo(void) { - int x[8] __attribute__((aligned(128))) = { 1 }; + int x[8] __attribute__((aligned(128))) = { 1, 1, 1, 1, 1, 1, 1, 1 }; bar (x); } |