Commit f87604f8 by Eric Botcazou Committed by Eric Botcazou

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
parent 8796f98a
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
......
......@@ -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;
......
......@@ -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)
......
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