]> gcc.gnu.org Git - gcc.git/commitdiff
ppc-vector-memcpy.c (foo): Use non-zero values for all entries in initializer.
authorJosh Conner <jconner@apple.com>
Fri, 3 Jun 2005 16:07:29 +0000 (16:07 +0000)
committerJosh Conner <jconner@gcc.gnu.org>
Fri, 3 Jun 2005 16:07:29 +0000 (16:07 +0000)
        * gcc.dg/ppc-vector-memcpy.c (foo): Use non-zero values for
        all entries in initializer.

From-SVN: r100540

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

index 4129b3f672cbf7fe14845d27cfc8c6550238a2a0..2b3cbc23b5355f42f9968523a1540c5ce4fafd6e 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 630ff2e88b148db4b3d87913ba18445864992281..99ca85e972c411b385dc4fa246d3a5a7a6e05c60 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);
 }
This page took 0.103363 seconds and 5 git commands to generate.