diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-08-18 18:11:18 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-08-18 18:11:18 +0000 |
commit | 1c0cc57e79e12fd87530f9c6860ba32516eb35c0 (patch) | |
tree | ba20c4b0e0120a645cd25113492a883864a687e1 /gcc/except.c | |
parent | 13c508d9917050ad79eca822b22a9eb1abf0bbc9 (diff) | |
download | gcc-1c0cc57e79e12fd87530f9c6860ba32516eb35c0.zip gcc-1c0cc57e79e12fd87530f9c6860ba32516eb35c0.tar.gz gcc-1c0cc57e79e12fd87530f9c6860ba32516eb35c0.tar.bz2 |
except.c (TYPE_HASH): Delete.
* except.c (TYPE_HASH): Delete.
* objc/objc-act.c (HASHFUNCTION): Cast to size_t, not
HOST_WIDE_INT.
* tree.c (TYPE_HASH): Delete.
* tree.h (TYPE_HASH): Define.
ch:
* tree.c (TYPE_HASH): Moved to ../tree.h.
cp:
* decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
GNU_xref_start_scope and GNU_xref_end_scope.
* tree.c (TYPE_HASH): Moved to ../tree.h.
From-SVN: r45004
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/except.c b/gcc/except.c index 599f188..12e65e7 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1475,9 +1475,6 @@ duplicate_eh_regions (ifun, map) } -/* ??? Move from tree.c to tree.h. */ -#define TYPE_HASH(TYPE) ((size_t) (TYPE) & 0777777) - static int t2r_eq (pentry, pdata) const PTR pentry; |