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
This commit is contained in:
Josh Conner 2005-06-03 16:07:29 +00:00 committed by Josh Conner
parent 548e34cdb7
commit 83cd747fd9
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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);
}