diff options
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); } |
