From 30a6aaedd7e4556100920683205fb8af31563426 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sun, 13 Mar 2005 15:54:15 +0000 Subject: 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 --- gcc/lambda-code.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/lambda-code.c') diff --git a/gcc/lambda-code.c b/gcc/lambda-code.c index 6c7fabba810..80e1ef86d0f 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); -- cgit v1.2.1