From 062ba6bf97bd5c1739fcf1dc7c8da0acb47046aa Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sun, 22 May 2011 18:25:23 +0200 Subject: [PATCH] isl_polynomial.c: remove unused variables Signed-off-by: Sven Verdoolaege --- isl_polynomial.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/isl_polynomial.c b/isl_polynomial.c index ff3196f3..ba9179c0 100644 --- a/isl_polynomial.c +++ b/isl_polynomial.c @@ -474,8 +474,6 @@ error: __isl_give struct isl_upoly *isl_upoly_dup(__isl_keep struct isl_upoly *up) { - struct isl_upoly *dup; - if (!up) return NULL; @@ -1036,7 +1034,6 @@ void isl_qpolynomial_free(__isl_take isl_qpolynomial *qp) __isl_give struct isl_upoly *isl_upoly_var_pow(isl_ctx *ctx, int pos, int power) { int i; - struct isl_upoly *up; struct isl_upoly_rec *rec; struct isl_upoly_cst *cst; @@ -2000,7 +1997,7 @@ static void invert_div(__isl_keep isl_qpolynomial *qp, int div, */ static __isl_give isl_qpolynomial *reduce_divs(__isl_take isl_qpolynomial *qp) { - int i, j; + int i; isl_vec *aff = NULL; struct isl_upoly *s; unsigned n_div; @@ -2525,7 +2522,6 @@ __isl_give isl_pw_qpolynomial *isl_pw_qpolynomial_mul( { int i, j, n; struct isl_pw_qpolynomial *res; - isl_set *set; if (!pwqp1 || !pwqp2) goto error; @@ -3760,8 +3756,6 @@ __isl_give isl_qpolynomial *isl_qpolynomial_morph(__isl_take isl_qpolynomial *qp int i; int n_sub; isl_ctx *ctx; - struct isl_upoly *up; - unsigned n_div; struct isl_upoly **subs; isl_mat *mat; -- 2.11.4.GIT