diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2005-05-27 13:26:02 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2005-05-27 13:26:02 +0000 |
commit | a0ef884f73d791abd09ca3f5a9ccf725ead5fe39 (patch) | |
tree | e3f210ab216eaf0a7c58b01f4405ce385f33b809 /gcc/lambda-code.c | |
parent | 6e3b9e2787800d6fde4828a532cc94d436193701 (diff) | |
download | gcc-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/lambda-code.c')
-rw-r--r-- | gcc/lambda-code.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index 13115b0..738ea7a 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -115,8 +115,8 @@ Fourier-Motzkin elimination is used to compute the bounds of the base space of the lattice. */ -DEF_VEC_P(int); -DEF_VEC_ALLOC_P(int,heap); +DEF_VEC_I(int); +DEF_VEC_ALLOC_I(int,heap); static bool perfect_nestify (struct loops *, struct loop *, VEC(tree,heap) *, |