Commit 018076e7 by Michael Matz Committed by Michael Matz

re PR c++/51264 (O0 Bootstrap failure: control reaches end of non-void function)

	PR c++/51264
	* tree.c (iterative_hash_expr): Remove break after return.

From-SVN: r181615
parent 64b5ddd7
2011-11-22 Michael Matz <matz@suse.de>
PR c++/51264
* tree.c (iterative_hash_expr): Remove break after return.
2011-11-22 Iain Sandoe <iains@gcc.gnu.org> 2011-11-22 Iain Sandoe <iains@gcc.gnu.org>
* target.def (tm_clone_table_section): New hook. * target.def (tm_clone_table_section): New hook.
...@@ -6994,7 +6994,6 @@ iterative_hash_expr (const_tree t, hashval_t val) ...@@ -6994,7 +6994,6 @@ iterative_hash_expr (const_tree t, hashval_t val)
val = iterative_hash_expr (TREE_OPERAND (t, i), val); val = iterative_hash_expr (TREE_OPERAND (t, i), val);
} }
return val; return val;
break;
} }
} }
......
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