From 53bccc62d510f2a1df7500b3a5d916ec08d99c91 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 21 Jan 2014 21:12:31 +0100 Subject: Fix bug18810 (bitwise 'and' and 'not' for unsigned types). --- ortho/gcc/ortho-lang.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ortho') diff --git a/ortho/gcc/ortho-lang.c b/ortho/gcc/ortho-lang.c index 65640cbd3..5404afbc9 100644 --- a/ortho/gcc/ortho-lang.c +++ b/ortho/gcc/ortho-lang.c @@ -847,7 +847,7 @@ enum ON_op_kind { /* Binary operations. */ ON_And, - ON_Or, + ON_Or, ON_Xor, ON_And_Then, ON_Or_Else, @@ -879,13 +879,13 @@ static enum tree_code ON_op_to_TREE_CODE[ON_LAST] = { TRUNC_MOD_EXPR, FLOOR_MOD_EXPR, - TRUTH_AND_EXPR, - TRUTH_OR_EXPR, - TRUTH_XOR_EXPR, + BIT_AND_EXPR, + BIT_IOR_EXPR, + BIT_XOR_EXPR, TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR, - TRUTH_NOT_EXPR, + BIT_NOT_EXPR, NEGATE_EXPR, ABS_EXPR, -- cgit v1.2.3