Commit eeee47af by Richard Guenther Committed by Richard Biener

re PR lto/43208 (lto1: error: invalid conversion in return statement)

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.

From-SVN: r162338
parent d2d57152
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.
2010-07-20 Jakub Jelinek <jakub@redhat.com>
PR debug/45003
......
/* { dg-lto-do run } */
struct X {
int a;
};
typedef struct list_node *list;
struct list_node {
list next;
struct X *value;
};
list f(void)
{
return 0;
}
int main(void)
{
return 0;
}
struct X {
int b;
};
typedef struct list_node *list;
struct list_node {
list next;
struct X *value;
};
list g(void)
{
return 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