aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorSteven Bosscher <stevenb@suse.de>2003-11-13 20:50:40 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2003-11-13 20:50:40 +0000
commit415294f0e03993a46b859da9d29c925d7b054965 (patch)
tree4560ef6207ee899b6c8a3b470551251af8208201 /gcc/tree-inline.c
parentc9b010ea5df06ec6170f15af83e240304681e061 (diff)
downloadgcc-415294f0e03993a46b859da9d29c925d7b054965.zip
gcc-415294f0e03993a46b859da9d29c925d7b054965.tar.gz
gcc-415294f0e03993a46b859da9d29c925d7b054965.tar.bz2
* tree-inline.c (walk_tree): Handle PLACEHOLDER_EXPR.
From-SVN: r73557
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 66f5a82..48b59a4 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -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;