aboutsummaryrefslogtreecommitdiff
path: root/gcc/fold-const.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2015-03-03 17:56:07 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2015-03-03 17:56:07 +0000
commit3a5c579a89de0fe4afc697ed9bb59c71b42f6016 (patch)
treed1f88567395850412def447508785b14089291c1 /gcc/fold-const.c
parent590e26360c16934958e37d65e019207425e23538 (diff)
downloadgcc-3a5c579a89de0fe4afc697ed9bb59c71b42f6016.zip
gcc-3a5c579a89de0fe4afc697ed9bb59c71b42f6016.tar.gz
gcc-3a5c579a89de0fe4afc697ed9bb59c71b42f6016.tar.bz2
fold-const.c (round_up_loc): Cast divisor to HOST_WIDE_INT before negating it.
* fold-const.c (round_up_loc): Cast divisor to HOST_WIDE_INT before negating it. * tree-sra.c (pa_sra_preliminary_function_checks): Fix typo in message. From-SVN: r221159
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r--gcc/fold-const.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index 8377120..f9f7f26 100644
--- a/gcc/fold-const.c
+++ b/gcc/fold-const.c
@@ -16032,7 +16032,7 @@ round_up_loc (location_t loc, tree value, unsigned int divisor)
t = build_int_cst (TREE_TYPE (value), divisor - 1);
value = size_binop_loc (loc, PLUS_EXPR, value, t);
- t = build_int_cst (TREE_TYPE (value), -divisor);
+ t = build_int_cst (TREE_TYPE (value), - (HOST_WIDE_INT) divisor);
value = size_binop_loc (loc, BIT_AND_EXPR, value, t);
}
}