re PR tree-optimization/17558 (internal compiler error: in merge_alias_info, at tree-ssa-copy.c:182)

2004-09-20  Andrew Pinski  <pinskia@physics.uc.edu>

        PR tree-opt/17558
        * gcc.c-torture/compile/pr17558.c: New test.

From-SVN: r87773
This commit is contained in:
Andrew Pinski 2004-09-20 20:58:23 +00:00 committed by Andrew Pinski
parent b1940f0c23
commit 4c9d875031
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-09-20 Andrew Pinski <pinskia@physics.uc.edu>
PR tree-opt/17558
* gcc.c-torture/compile/pr17558.c: New test.
2004-09-20 Richard Sandiford <rsandifo@redhat.com>
* gcc.dg/compat/sdata-section.h (SDATA_SECTION): Don't use an attribute

View File

@ -0,0 +1,10 @@
struct xobject {
char type;
};
extern struct xobject *t1_Xform ( struct xobject *obj);
struct xobject *
t1_Xform(struct xobject *obj)
{
register struct font *F = (struct font *) obj;
return((struct xobject*)F);
}