aboutsummaryrefslogtreecommitdiff
path: root/gcc/lambda.h
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2005-04-22 14:17:07 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2005-04-22 14:17:07 +0000
commite6ef8d816eb03369d473bd2f482848e175999b49 (patch)
treea4ade7f681dcdb7f8021ebae6de9da8575b84070 /gcc/lambda.h
parent8ca864d2a8cfd66dadfce83846651504c0975e3c (diff)
downloadgcc-e6ef8d816eb03369d473bd2f482848e175999b49.zip
gcc-e6ef8d816eb03369d473bd2f482848e175999b49.tar.gz
gcc-e6ef8d816eb03369d473bd2f482848e175999b49.tar.bz2
lambda-code.c: Define VEC(int,heap), VEC(lambda_loop,heap).
* lambda-code.c: Define VEC(int,heap), VEC(lambda_loop,heap). (gcc_tree_to_linear_expression): Convert to heap allocated vectors. (gcc_loop_to_lambda_loop, gcc_loopnest_to_lambda_loopnest, lbv_to_gcc_expression, lle_to_gcc_expression, lambda_loopnest_to_gcc_loopnest, can_convert_to_perfect_nest, perfect_nestify): Likewise. lambda.h (gcc_loopnest_to_lambda_loopnest, lambda_loopnest_to_gcc_loopnest): Likewise. tree-loop-linear.c (linear_transform_loops): Likewise. From-SVN: r98561
Diffstat (limited to 'gcc/lambda.h')
-rw-r--r--gcc/lambda.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/lambda.h b/gcc/lambda.h
index 0c259d6..d3fdc99 100644
--- a/gcc/lambda.h
+++ b/gcc/lambda.h
@@ -196,13 +196,12 @@ lambda_body_vector lambda_body_vector_compute_new (lambda_trans_matrix,
void print_lambda_body_vector (FILE *, lambda_body_vector);
lambda_loopnest gcc_loopnest_to_lambda_loopnest (struct loops *,
struct loop *,
- VEC(tree,gc) **,
- VEC(tree,gc) **,
+ VEC(tree,heap) **,
+ VEC(tree,heap) **,
bool);
-void lambda_loopnest_to_gcc_loopnest (struct loop *, VEC(tree,gc) *,
- VEC(tree,gc) *,
- lambda_loopnest,
- lambda_trans_matrix);
+void lambda_loopnest_to_gcc_loopnest (struct loop *,
+ VEC(tree,heap) *, VEC(tree,heap) *,
+ lambda_loopnest, lambda_trans_matrix);
static inline void lambda_vector_negate (lambda_vector, lambda_vector, int);