re PR rtl-optimization/60601 (profiledbootstrap fails with Ada)

PR rtl-optimization/60601
	* bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere.

	* gcc.c (eval_spec_function): Initialize save_growing_value.

From-SVN: r208770
This commit is contained in:
Eric Botcazou 2014-03-23 11:29:42 +00:00 committed by Eric Botcazou
parent 8796f98a5f
commit f87604f8d2
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2014-03-23 Eric Botcazou <ebotcazou@adacore.com>
PR rtl-optimization/60601
* bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere.
* gcc.c (eval_spec_function): Initialize save_growing_value.
2014-03-22 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/60613

View File

@ -1826,9 +1826,8 @@ fix_up_fall_thru_edges (void)
edge e;
edge_iterator ei;
/* Find EDGE_CAN_FALLTHRU edge. */
FOR_EACH_EDGE (e, ei, cur_bb->succs)
if (e->flags & EDGE_CAN_FALLTHRU)
if (e->flags & EDGE_FALLTHRU)
{
fall_thru = e;
break;

View File

@ -5481,7 +5481,7 @@ eval_spec_function (const char *func, const char *args)
const char *save_suffix_subst;
int save_growing_size;
void *save_growing_value;
void *save_growing_value = NULL;
sf = lookup_spec_function (func);
if (sf == NULL)