Commit 2e6f91e3 by Richard Sandiford Committed by Richard Sandiford

* gcc.dg/pr25805.c: Fix misapplied patch.

From-SVN: r109967
parent 2fa6dddd
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.
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment