diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-09-08 15:44:18 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-09-08 15:44:18 +0000 |
commit | e1b6684ceca53685a860320b57573fcfa83d8e7f (patch) | |
tree | 4da5290aefe8f596b8887e4a939eeec9d6a6d343 /gcc/varray.h | |
parent | 98cc50509619f1192a03c0d8f57eebc85cb80a29 (diff) | |
download | gcc-e1b6684ceca53685a860320b57573fcfa83d8e7f.tar.gz |
gansidecl.h (__attribute__, [...]): Delete.
* gansidecl.h (__attribute__, ATTRIBUTE_UNUSED_LABEL,
ATTRIBUTE_UNUSED, ATTRIBUTE_NORETURN, ATTRIBUTE_PRINTF,
ATTRIBUTE_PRINTF_1, ATTRIBUTE_PRINTF_2, ATTRIBUTE_PRINTF_3,
ATTRIBUTE_PRINTF_4, ATTRIBUTE_PRINTF_5, GENERIC_PTR): Delete.
* c-decl.c (field_decl_cmp): Use PTR instead of GENERIC_PTR.
* cccp.c (pcfinclude): Likewise.
* global.c (allocno_compare): Likewise.
* haifa-sched.c (rank_for_schedule): Likewise.
* local-alloc.c (qty_sugg_compare_1, qty_compare_1): Likewise.
* reload1.c (hard_reg_use_compare, reload_reg_class_lower): Likewise.
* stupid.c (stupid_reg_compare): Likewise.
* tree.c (_obstack_allocated_p): Likewise.
* varray.h (varray_data_tag, VARRAY_GENERIC_PTR_INIT): Likewise.
From-SVN: r29208
Diffstat (limited to 'gcc/varray.h')
-rw-r--r-- | gcc/varray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varray.h b/gcc/varray.h index 1b175eff0fa..5a889bf9dd6 100644 --- a/gcc/varray.h +++ b/gcc/varray.h @@ -66,7 +66,7 @@ typedef union varray_data_tag { unsigned long ul[1]; HOST_WIDE_INT hint[1]; unsigned HOST_WIDE_INT uhint[1]; - GENERIC_PTR generic[1]; + PTR generic[1]; char *cptr[1]; struct rtx_def *rtx[1]; struct rtvec_def *rtvec[1]; @@ -121,7 +121,7 @@ extern varray_type varray_init PROTO ((size_t, size_t, const char *)); va = varray_init (num, sizeof (unsigned HOST_WIDE_INT), name) #define VARRAY_GENERIC_PTR_INIT(va, num, name) \ - va = varray_init (num, sizeof (GENERIC_PTR), name) + va = varray_init (num, sizeof (PTR), name) #define VARRAY_CHAR_PTR_INIT(va, num, name) \ va = varray_init (num, sizeof (char *), name) |