summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-01-19 16:29:44 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-01-19 16:29:44 +0000
commitad7fa0f98e3e9760fcd6812ea0c68aa883345a51 (patch)
tree0390f693ef3bf74959945fd7b26f1a018ee6ea9f
parentb54ed23c1b4dc393230ba445e7db31c48445e670 (diff)
downloadgcc-ad7fa0f98e3e9760fcd6812ea0c68aa883345a51.tar.gz
* gcc.dg/pr25805.c: Fix misapplied patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109967 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/pr25805.c20
2 files changed, 4 insertions, 20 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c54f6b0868d..4266cb0aa4a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/gcc.dg/pr25805.c b/gcc/testsuite/gcc.dg/pr25805.c
index 1060a96cfe2..71182c52f2e 100644
--- a/gcc/testsuite/gcc.dg/pr25805.c
+++ b/gcc/testsuite/gcc.dg/pr25805.c
@@ -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);
-}