* tree-cfg.c (tree_node_can_be_shared): Fix typo'd error_mark_node.
authorRichard Henderson <rth@redhat.com>
Mon, 29 Nov 2004 21:06:11 +0000 (13:06 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Mon, 29 Nov 2004 21:06:11 +0000 (13:06 -0800)
From-SVN: r91490

gcc/ChangeLog
gcc/tree-cfg.c

index 801ecee75e78e2a2b2a6b6cbd5825496236dc5ff..87a928f8d447d9ca400833902f25b91d54844d3d 100644 (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):
index 692e74653e99083bd76b584aa13988ae26b3a765..b23fa194087d58e2a5942efcf575d77224e4cb7a 100644 (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)