Commit 30a6aaed by Kazu Hirata Committed by Kazu Hirata

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
parent b475548e
......@@ -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
......
......@@ -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,7 +787,7 @@ 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),
lambda_matrix_inverse (LTM_MATRIX (trans),
invertedtrans, depth);
/* A = A1 inv(U). */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment