aboutsummaryrefslogtreecommitdiff
path: root/gcc/global.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2005-05-27 13:26:02 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2005-05-27 13:26:02 +0000
commita0ef884f73d791abd09ca3f5a9ccf725ead5fe39 (patch)
treee3f210ab216eaf0a7c58b01f4405ce385f33b809 /gcc/global.c
parent6e3b9e2787800d6fde4828a532cc94d436193701 (diff)
downloadgcc-a0ef884f73d791abd09ca3f5a9ccf725ead5fe39.zip
gcc-a0ef884f73d791abd09ca3f5a9ccf725ead5fe39.tar.gz
gcc-a0ef884f73d791abd09ca3f5a9ccf725ead5fe39.tar.bz2
vec.h: Implement integral type vector specialization.
* vec.h: Implement integral type vector specialization. (VEC_T): Define a non-GTY structure. (VEC_T_GTY): Define a GTY structure. (VEC_TA): Rename to ... (VEC_TA_GTY): ... here. (DEF_VEC_I, DEF_VEC_ALLOC_I): New. (DEF_VEC_P, DEF_VEC_ALLOC_P): Adjust. (DEF_VEC_FUNC_P, DEF_VEC_ALLOC_FUNC_P): New, broken out of DEF_VEC_P and DEF_VEC_ALLOC_P. (DEF_VEC_O, DEF_VEC_ALLOC_O): Adjust. (DEF_VEC_FUNC_O, DEF_VEC_ALLOC_FUNC_O): New, broken out of DEF_VEC_O and DEF_VEC_ALLOC_O. * global.c: Use DEF_VEC_I, DEF_VEC_ALLOC_I. * lambda-code.c: Likewise. * tree-into-ssa.c: Likewise. * tree-ssa-live.c: Likewise. From-SVN: r100251
Diffstat (limited to 'gcc/global.c')
-rw-r--r--gcc/global.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/global.c b/gcc/global.c
index b11e6d7..dea1fc5 100644
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -2098,8 +2098,8 @@ mark_reg_change (rtx reg, rtx setter, void *data)
/* Classes of registers which could be early clobbered in the current
insn. */
-DEF_VEC_P(int);
-DEF_VEC_ALLOC_P(int,heap);
+DEF_VEC_I(int);
+DEF_VEC_ALLOC_I(int,heap);
static VEC(int,heap) *earlyclobber_regclass;