Commit cf259b84 by Richard Guenther Committed by Richard Biener

re PR lto/43221 ([LTO] ICE in get_alias_set, at alias.c:717)

2010-07-20  Richard Guenther  <rguenther@suse.de>

	PR lto/43221
	* gcc.dg/lto/20100720-2_0.c: New testcase.
	* gcc.dg/lto/20100720-2_1.c: Likewise.

From-SVN: r162339
parent eeee47af
2010-07-20 Richard Guenther <rguenther@suse.de>
PR lto/43221
* gcc.dg/lto/20100720-2_0.c: New testcase.
* gcc.dg/lto/20100720-2_1.c: Likewise.
2010-07-20 Richard Guenther <rguenther@suse.de>
PR lto/43208
* gcc.dg/lto/20100720-1_0.c: New testcase.
* gcc.dg/lto/20100720-1_1.c: Likewise.
......
/* { dg-lto-do run } */
struct X {
int a;
};
typedef struct list_node *list;
struct list_node {
list next;
list *ptr;
struct X *value;
};
list f(list lst)
{
return lst->next;
}
int main(void)
{
return 0;
}
struct X {
int b;
};
typedef struct list_node *list;
struct list_node {
list next;
list *ptr;
struct X *value;
};
list *g(list *ptr)
{
return ptr;
}
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