OSDN Git Service

* gcc.dg/pr25805.c: Fix misapplied patch.
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 19 Jan 2006 16:29:44 +0000 (16:29 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 19 Jan 2006 16:29:44 +0000 (16:29 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109967 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr25805.c

index c54f6b0..4266cb0 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-19  Richard Sandiford  <richard@codesourcery.com>
+
+       * gcc.dg/pr25805.c: Fix misapplied patch.
+
 2006-01-19  Dorit Nuzman  <dorit@il.ibm.com>
 
        * lib/target-suports.exp (check_effective_target_vect_sdot_qi): New.
index 1060a96..71182c5 100644 (file)
@@ -18,23 +18,3 @@ main ()
     abort ();
   exit (0);
 }
-/* When -fzero-initialized-in-bss was in effect, we used to only allocate
-   storage for d1.a.  */
-/* { dg-do run } */
-/* { dg-options "" } */
-extern void abort (void);
-extern void exit (int);
-
-struct { int a; int x[]; } d1 = { 0, 0 };
-int d2 = 0;
-
-int
-main ()
-{
-  d2 = 1;
-  if (sizeof (d1) != sizeof (int))
-    abort ();
-  if (d1.x[0] != 0)
-    abort ();
-  exit (0);
-}