Commit 825638ba by Richard Kenner

(convert_to_integer): Handle TRUTH_XOR_EXPR.

From-SVN: r2994
parent 9379fac9
......@@ -145,7 +145,7 @@ convert_to_integer (type, expr)
if (TREE_CODE_CLASS (ex_form) == '<'
|| ex_form == TRUTH_AND_EXPR || ex_form == TRUTH_ANDIF_EXPR
|| ex_form == TRUTH_OR_EXPR || ex_form == TRUTH_ORIF_EXPR
|| ex_form == TRUTH_NOT_EXPR)
|| ex_form == TRUTH_XOR_EXPR || ex_form == TRUTH_NOT_EXPR)
{
TREE_TYPE (expr) = type;
return expr;
......
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