diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-07-20 15:47:33 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-07-20 15:47:33 +0000 |
commit | 7097b9426b8898a91cd49faff006295cc9bd6820 (patch) | |
tree | a31ebbaee27a56d8af1282863c1c9427bc98e5e9 /gcc/double-int.h | |
parent | e9b5fdd9ca4c50b00d5ba0715b8267e2986c0522 (diff) | |
download | gcc-7097b9426b8898a91cd49faff006295cc9bd6820.tar.gz |
* cse.c: Use HOST_WIDE_INT_M1 instead of ~(HOST_WIDE_INT) 0.
* combine.c: Use HOST_WIDE_INT_M1U instead of
~(unsigned HOST_WIDE_INT) 0.
* double-int.h: Ditto.
* dse.c: Ditto.
* dwarf2asm.c:Ditto.
* expmed.c: Ditto.
* genmodes.c: Ditto.
* match.pd: Ditto.
* read-rtl.c: Ditto.
* tree-ssa-loop-ivopts.c: Ditto.
* tree-ssa-loop-prefetch.c: Ditto.
* tree-vect-generic.c: Ditto.
* tree-vect-patterns.c: Ditto.
* tree.c: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@238529 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/double-int.h')
-rw-r--r-- | gcc/double-int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/double-int.h b/gcc/double-int.h index fd84b4bafeb..6f59c1b9717 100644 --- a/gcc/double-int.h +++ b/gcc/double-int.h @@ -365,7 +365,7 @@ double_int::operator ^ (double_int b) const void dump_double_int (FILE *, double_int, bool); -#define ALL_ONES (~((unsigned HOST_WIDE_INT) 0)) +#define ALL_ONES HOST_WIDE_INT_M1U /* The operands of the following comparison functions must be processed with double_int_ext, if their precision is less than |