* tree-cfg.c (tree_verify_flow_info): Use LABEL_EXPR_LABEL.

From-SVN: r98027
This commit is contained in:
Dorit Naishlos 2005-04-12 18:01:19 +00:00 committed by Dorit Nuzman
parent 77195d61f0
commit b7d1c15e4e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-04-12 Dorit Naishlos <dorit@il.ibm.com>
* tree-cfg.c (tree_verify_flow_info): Use LABEL_EXPR_LABEL.
2005-04-12 Bernd Schmidt <bernd.schmidt@analog.com>
* config/bfin/bfin.c (bfin_library_id_string): Remove.

View File

@ -3880,7 +3880,7 @@ tree_verify_flow_info (void)
if (TREE_CODE (stmt) == LABEL_EXPR)
{
error ("Label %s in the middle of basic block %d\n",
IDENTIFIER_POINTER (DECL_NAME (stmt)),
IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
bb->index);
err = 1;
}