diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-12-30 06:02:43 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-12-30 06:02:43 -0500 |
commit | 825638ba06380373fceb5269416d1bf619a14e85 (patch) | |
tree | 7a3015dab4ea58d6f06173a9e01fafbf9b1c9435 /gcc/c-convert.c | |
parent | 9379fac9a238f3f08874d139c8322609302cfd1a (diff) | |
download | gcc-825638ba06380373fceb5269416d1bf619a14e85.zip gcc-825638ba06380373fceb5269416d1bf619a14e85.tar.gz gcc-825638ba06380373fceb5269416d1bf619a14e85.tar.bz2 |
(convert_to_integer): Handle TRUTH_XOR_EXPR.
From-SVN: r2994
Diffstat (limited to 'gcc/c-convert.c')
-rw-r--r-- | gcc/c-convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-convert.c b/gcc/c-convert.c index 89637cb..8b90f27 100644 --- a/gcc/c-convert.c +++ b/gcc/c-convert.c @@ -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; |