ipa-prop.c (ipa_compute_jump_functions_for_edge): Return early for internal calls.
* ipa-prop.c (ipa_compute_jump_functions_for_edge): Return early for internal calls. From-SVN: r202614
This commit is contained in:
parent
40dbb05c6b
commit
96e24d499b
@ -1,3 +1,8 @@
|
||||
2013-09-16 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* ipa-prop.c (ipa_compute_jump_functions_for_edge): Return early
|
||||
for internal calls.
|
||||
|
||||
2013-09-16 Richard Sandiford <rdsandiford@googlemail.com>
|
||||
|
||||
* cse.c (try_const_anchors): Punt on CC modes.
|
||||
|
@ -1551,6 +1551,8 @@ ipa_compute_jump_functions_for_edge (struct param_analysis_info *parms_ainfo,
|
||||
return;
|
||||
vec_safe_grow_cleared (args->jump_functions, arg_num);
|
||||
|
||||
if (gimple_call_internal_p (call))
|
||||
return;
|
||||
if (ipa_func_spec_opts_forbid_analysis_p (cs->caller))
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user