From: Josh Conner Date: Fri, 3 Jun 2005 16:07:29 +0000 (+0000) Subject: ppc-vector-memcpy.c (foo): Use non-zero values for all entries in initializer. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83cd747fd944f49180cc60ddb1c3a9f889fb6b63;p=gcc.git 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 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4129b3f672c..2b3cbc23b53 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-06-03 Josh Conner + + * gcc.dg/ppc-vector-memcpy.c (foo): Use non-zero values for + all entries in initializer. + 2005-06-03 Richard Guenther 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 630ff2e88b1..99ca85e972c 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); }