* except.c (TYPE_HASH): Cast to size_t, not HOST_WIDE_INT.
From-SVN: r44919
This commit is contained in:
parent
d0420460b5
commit
fd7e958f94
@ -1,3 +1,7 @@
|
||||
2001-08-15 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* except.c (TYPE_HASH): Cast to size_t, not HOST_WIDE_INT.
|
||||
|
||||
Tue Aug 14 17:30:59 2001 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* flow.c (commit_one_edge_insertion): Don't separate a LOOP_BEG
|
||||
|
@ -1472,7 +1472,7 @@ duplicate_eh_regions (ifun, map)
|
||||
|
||||
|
||||
/* ??? Move from tree.c to tree.h. */
|
||||
#define TYPE_HASH(TYPE) ((HOST_WIDE_INT) (TYPE) & 0777777)
|
||||
#define TYPE_HASH(TYPE) ((size_t) (TYPE) & 0777777)
|
||||
|
||||
static int
|
||||
t2r_eq (pentry, pdata)
|
||||
|
Loading…
Reference in New Issue
Block a user