Commit a5ee6e44 by Richard Kenner

(contains_placeholder): Return 1 for PLACEHOLDER_EXPR.

From-SVN: r12862
parent 86242483
......@@ -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))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment