diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-13 15:54:15 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-13 15:54:15 +0000 |
commit | 30a6aaedd7e4556100920683205fb8af31563426 (patch) | |
tree | 8ca34373e6dff91a318c3003ed4fd10817350618 /gcc/lambda-code.c | |
parent | b475548eebfe1dcd912e4f5faea0f0e585d79c6b (diff) | |
download | gcc-30a6aaedd7e4556100920683205fb8af31563426.zip gcc-30a6aaedd7e4556100920683205fb8af31563426.tar.gz gcc-30a6aaedd7e4556100920683205fb8af31563426.tar.bz2 |
lambda-code.c (lambda_compute_auxillary_space): Remove local variable determinant.
* lambda-code.c (lambda_compute_auxillary_space): Remove local
variable determinant.
From-SVN: r96373
Diffstat (limited to 'gcc/lambda-code.c')
-rw-r--r-- | gcc/lambda-code.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index 6c7fabb..80e1ef8 100644 --- a/gcc/lambda-code.c +++ b/gcc/lambda-code.c @@ -672,7 +672,7 @@ lambda_compute_auxillary_space (lambda_loopnest nest, lambda_matrix A, B, A1, B1; lambda_vector a, a1; lambda_matrix invertedtrans; - int determinant, depth, invariants, size; + int depth, invariants, size; int i, j; lambda_loop loop; lambda_linear_expression expression; @@ -787,8 +787,8 @@ lambda_compute_auxillary_space (lambda_loopnest nest, invertedtrans = lambda_matrix_new (depth, depth); /* Compute the inverse of U. */ - determinant = lambda_matrix_inverse (LTM_MATRIX (trans), - invertedtrans, depth); + lambda_matrix_inverse (LTM_MATRIX (trans), + invertedtrans, depth); /* A = A1 inv(U). */ lambda_matrix_mult (A1, invertedtrans, A, size, depth, depth); |