Commit fd7e958f by Richard Henderson Committed by Richard Henderson

* except.c (TYPE_HASH): Cast to size_t, not HOST_WIDE_INT.

From-SVN: r44919
parent d0420460
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment