(contains_placeholder): Return 1 for PLACEHOLDER_EXPR.

From-SVN: r12862
This commit is contained in:
Richard Kenner 1996-09-29 18:46:25 -04:00
parent 862424838e
commit a5ee6e4484
1 changed files with 2 additions and 0 deletions

View File

@ -2263,6 +2263,8 @@ contains_placeholder_p (exp)
in it since it is supplying a value for it. */
if (code == WITH_RECORD_EXPR)
return 0;
else if (code == PLACEHOLDER_EXPR)
return 1;
switch (TREE_CODE_CLASS (code))
{