Commit e0cbb51b by Richard Guenther Committed by Richard Biener

lto-streamer-in.c (input_gimple_stmt): Use types_compatible_p.

2010-11-24  Richard Guenther  <rguenther@suse.de>

	* lto-streamer-in.c (input_gimple_stmt): Use types_compatible_p.

From-SVN: r167116
parent dbe9f23c
2010-11-24 Richard Guenther <rguenther@suse.de> 2010-11-24 Richard Guenther <rguenther@suse.de>
* lto-streamer-in.c (input_gimple_stmt): Use types_compatible_p.
2010-11-24 Richard Guenther <rguenther@suse.de>
PR lto/46606 PR lto/46606
* lto-streamer-in.c (input_gimple_stmt): When we cannot find * lto-streamer-in.c (input_gimple_stmt): When we cannot find
a FIELD_DECL that is type correct issue a warning and fixup a FIELD_DECL that is type correct issue a warning and fixup
...@@ -967,9 +967,8 @@ input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in, ...@@ -967,9 +967,8 @@ input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in,
== DECL_NONADDRESSABLE_P (field) == DECL_NONADDRESSABLE_P (field)
&& gimple_compare_field_offset (tem, field)) && gimple_compare_field_offset (tem, field))
{ {
if (gimple_types_compatible_p (TREE_TYPE (tem), if (types_compatible_p (TREE_TYPE (tem),
TREE_TYPE (field), TREE_TYPE (field)))
GTC_DIAG))
break; break;
else else
closest_match = tem; closest_match = tem;
......
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