diff options
author | Thomas Neumann <tneumann@users.sourceforge.net> | 2007-06-06 14:33:57 +0000 |
---|---|---|
committer | Thomas Neumann <tneumann@gcc.gnu.org> | 2007-06-06 14:33:57 +0000 |
commit | 45222d4a3d07fc721de24bcb6c264dcd0541150a (patch) | |
tree | b80fec3949a169acee5421cfa7637d4c4eec7242 /gcc/lambda.h | |
parent | 68c834d087355b52387e37a5c87436153b638b05 (diff) | |
download | gcc-45222d4a3d07fc721de24bcb6c264dcd0541150a.zip gcc-45222d4a3d07fc721de24bcb6c264dcd0541150a.tar.gz gcc-45222d4a3d07fc721de24bcb6c264dcd0541150a.tar.bz2 |
lambda-code.c (struct lambda_lattice_s): Add a name to the struct.
* lambda-code.c (struct lambda_lattice_s): Add a name to the struct.
(lambda_body_vector_new): Use type safe memory macros.
(lambda_linear_expression_new): Likewise.
(lambda_loopnest_new): Likewise.
(lambda_lattice_new): Likewise.
(replace_uses_equiv_to_x_with_y): Cast according to the coding
conventions. Use type safe memory macros.
* lambda.h (struct lambda_trans_matrix_s): Add a name to the struct.
(lambda_body_vector_s): Likewise.
* lambda-mat.c (lambda_matrix_new): Use type safe memory macros.
* lambda-trans.c (lambda_trans_matrix_new): Likewise.
From-SVN: r125491
Diffstat (limited to 'gcc/lambda.h')
-rw-r--r-- | gcc/lambda.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/lambda.h b/gcc/lambda.h index e6fbc8f..9310b84 100644 --- a/gcc/lambda.h +++ b/gcc/lambda.h @@ -40,7 +40,7 @@ typedef lambda_vector *lambda_matrix; /* A transformation matrix, which is a self-contained ROWSIZE x COLSIZE matrix. Rather than use floats, we simply keep a single DENOMINATOR that represents the denominator for every element in the matrix. */ -typedef struct +typedef struct lambda_trans_matrix_s { lambda_matrix matrix; int rowsize; @@ -61,7 +61,7 @@ typedef struct This structure is used during code generation in order to rewrite the old induction variable uses in a statement in terms of the newly created induction variables. */ -typedef struct +typedef struct lambda_body_vector_s { lambda_vector coefficients; int size; @@ -127,7 +127,7 @@ typedef struct lambda_loop_s and an integer representing the number of INVARIANTS in the loop. Both of these integers are used to size the associated coefficient vectors in the linear expression structures. */ -typedef struct +typedef struct lambda_loopnest_s { lambda_loop *loops; int depth; |