* lto-cgraph.c (input_edge): Do not care about resolution decisions.

From-SVN: r161812
This commit is contained in:
Jan Hubicka 2010-07-05 00:22:48 +02:00 committed by Jan Hubicka
parent a05541a911
commit 4aa1c0d592
2 changed files with 4 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2010-07-04 Jan Hubicka <jh@suse.cz>
* lto-cgraph.c (input_edge): Do not care about resolution decisions.
2010-07-04 Jan Hubicka <jh@suse.cz>
* cgraphunit.c (init_cgraph): Only initialize dump file if it is not already

View File

@ -1158,7 +1158,6 @@ input_edge (struct lto_input_block *ib, VEC(cgraph_node_ptr, heap) *nodes,
unsigned int nest;
cgraph_inline_failed_t inline_failed;
struct bitpack_d bp;
enum ld_plugin_symbol_resolution caller_resolution;
int ecf_flags = 0;
caller = VEC_index (cgraph_node_ptr, nodes, lto_input_sleb128 (ib));
@ -1183,13 +1182,6 @@ input_edge (struct lto_input_block *ib, VEC(cgraph_node_ptr, heap) *nodes,
freq = (int) bp_unpack_value (&bp, HOST_BITS_PER_INT);
nest = (unsigned) bp_unpack_value (&bp, 30);
/* If the caller was preempted, don't create the edge.
??? Should we ever have edges from a preempted caller? */
caller_resolution = lto_symtab_get_resolution (caller->decl);
if (caller_resolution == LDPR_PREEMPTED_REG
|| caller_resolution == LDPR_PREEMPTED_IR)
return;
if (indirect)
edge = cgraph_create_indirect_edge (caller, NULL, 0, count, freq, nest);
else