OSDN Git Service

* gcc.dg/ppc-vector-memcpy.c (foo): Use non-zero values for
authorjconner <jconner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Jun 2005 16:07:29 +0000 (16:07 +0000)
committerjconner <jconner@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Jun 2005 16:07:29 +0000 (16:07 +0000)
        all entries in initializer.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100540 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/ppc-vector-memcpy.c

index 4129b3f..2b3cbc2 100644 (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
index 630ff2e..99ca85e 100644 (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);
 }