diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 893aacc..25fa071 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1728,8 +1728,7 @@ size_diffop (tree arg0, tree arg1) if (!TYPE_UNSIGNED (type)) return size_binop (MINUS_EXPR, arg0, arg1); - ctype = (type == bitsizetype || type == ubitsizetype - ? sbitsizetype : ssizetype); + ctype = type == bitsizetype ? sbitsizetype : ssizetype; /* If either operand is not a constant, do the conversions to the signed type and subtract. The hardware will do the right thing with any |