mirror of git://gcc.gnu.org/git/gcc.git
* tree-cfg.c (tree_verify_flow_info): Use LABEL_EXPR_LABEL.
From-SVN: r98027
This commit is contained in:
parent
77195d61f0
commit
b7d1c15e4e
|
|
@ -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>
|
2005-04-12 Bernd Schmidt <bernd.schmidt@analog.com>
|
||||||
|
|
||||||
* config/bfin/bfin.c (bfin_library_id_string): Remove.
|
* config/bfin/bfin.c (bfin_library_id_string): Remove.
|
||||||
|
|
|
||||||
|
|
@ -3880,7 +3880,7 @@ tree_verify_flow_info (void)
|
||||||
if (TREE_CODE (stmt) == LABEL_EXPR)
|
if (TREE_CODE (stmt) == LABEL_EXPR)
|
||||||
{
|
{
|
||||||
error ("Label %s in the middle of basic block %d\n",
|
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);
|
bb->index);
|
||||||
err = 1;
|
err = 1;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue