lambda-code.c (lambda_compute_auxillary_space): Remove local variable determinant.
authorKazu Hirata <kazu@cs.umass.edu>
Sun, 13 Mar 2005 15:54:15 +0000 (15:54 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sun, 13 Mar 2005 15:54:15 +0000 (15:54 +0000)
* lambda-code.c (lambda_compute_auxillary_space): Remove local
variable determinant.

From-SVN: r96373

gcc/ChangeLog
gcc/lambda-code.c

index 9bdb2952d7fb10094870772f0278a40b009a0301..c52c6f2eae59a90fb470f964b51be54ea4a8b24c 100644 (file)
@@ -20,6 +20,9 @@
        * builtins.c (expand_builtin_mathfn_3): Remove local variable
        before_call.
 
+       * lambda-code.c (lambda_compute_auxillary_space): Remove local
+       variable determinant.
+
 2005-03-13  Andy Hutchinson  <HutchinsonAndy@netscape.net>
 
        PR target/18251
index 6c7fabba810c77bd009a2d30be50c6c536b0228c..80e1ef86d0fc77dfbd1e2ddfe4ae4a5467ba6e35 100644 (file)
@@ -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);