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
This commit is contained in:
Michael Matz 2011-11-22 13:32:15 +00:00 committed by Michael Matz
parent 64b5ddd7f0
commit 018076e705
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* target.def (tm_clone_table_section): New hook.

View File

@ -6994,7 +6994,6 @@ iterative_hash_expr (const_tree t, hashval_t val)
val = iterative_hash_expr (TREE_OPERAND (t, i), val);
}
return val;
break;
}
}