* tree-inline.c (walk_tree): Handle PLACEHOLDER_EXPR.
authorSteven Bosscher <stevenb@suse.de>
Thu, 13 Nov 2003 20:50:40 +0000 (20:50 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Thu, 13 Nov 2003 20:50:40 +0000 (20:50 +0000)
From-SVN: r73557

gcc/ChangeLog
gcc/tree-inline.c

index e1eccb14c58fc8409725a6917626832f72e0373f..fee78ada371d4f6af6602427e6f08cd9dc5cd0ba 100644 (file)
@@ -1,3 +1,7 @@
+2003-11-13  Steven Bosscher  <stevenb@suse.de>
+
+       * tree-inline.c (walk_tree): Handle PLACEHOLDER_EXPR.
+
 2003-11-13  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/h8300/lib1funcs.asm: Fix comment typos.
index 66f5a82e484a0423518fecf210a7221145d3d7f4..48b59a41ed50087386a27a7cadceeb00385ef870 100644 (file)
@@ -1856,6 +1856,7 @@ walk_tree (tree *tp, walk_tree_fn func, void *data, void *htab_)
     case BLOCK:
     case RECORD_TYPE:
     case CHAR_TYPE:
+    case PLACEHOLDER_EXPR:
       /* None of these have subtrees other than those already walked
          above.  */
       break;