* tree-cfg.c (tree_node_can_be_shared): Fix typo'd error_mark_node.

From-SVN: r91490
This commit is contained in:
Richard Henderson 2004-11-29 13:06:11 -08:00 committed by Richard Henderson
parent e59165e65a
commit bac8beb402
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-11-29 Richard Henderson <rth@redhat.com>
* tree-cfg.c (tree_node_can_be_shared): Fix typo'd error_mark_node.
2004-11-29 Steven Bosscher <stevenb@suse.de>
* cfgcleanup.c (outgoing_edges_match, try_crossjump_to_edge):

View File

@ -3427,7 +3427,7 @@ tree_node_can_be_shared (tree t)
|| CONSTANT_CLASS_P (t)
|| is_gimple_min_invariant (t)
|| TREE_CODE (t) == SSA_NAME
|| t == error_node_mark)
|| t == error_mark_node)
return true;
if (TREE_CODE (t) == CASE_LABEL_EXPR)