linux-sparse.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 6/16] remove useless argument in evaluate_ptr_sub()
@ 2007-06-24  8:04 Al Viro
  0 siblings, 0 replies; only message in thread
From: Al Viro @ 2007-06-24  8:04 UTC (permalink / raw)
  To: linux-sparse


Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
 evaluate.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/evaluate.c b/evaluate.c
index 5eba817..2203e67 100644
--- a/evaluate.c
+++ b/evaluate.c
@@ -836,12 +836,12 @@ static int is_null_ptr(struct expression *expr)
  */
 #define MOD_IGN (MOD_VOLATILE | MOD_CONST)
 
-static struct symbol *evaluate_ptr_sub(struct expression *expr, struct expression *l, struct expression **rp)
+static struct symbol *evaluate_ptr_sub(struct expression *expr, struct expression *l)
 {
 	const char *typediff;
 	struct symbol *ctype;
 	struct symbol *ltype, *rtype;
-	struct expression *r = *rp;
+	struct expression *r = expr->right;
 
 	ltype = degenerate(l);
 	rtype = degenerate(r);
@@ -851,7 +851,7 @@ static struct symbol *evaluate_ptr_sub(struct expression *expr, struct expressio
 	 * right thing.
 	 */
 	if (!is_ptr_type(rtype))
-		return evaluate_ptr_add(expr, degenerate(l), rp);
+		return evaluate_ptr_add(expr, degenerate(l), &expr->right);
 
 	ctype = ltype;
 	typediff = type_difference(ltype, rtype, ~MOD_SIZE, ~MOD_SIZE);
@@ -902,7 +902,7 @@ static struct symbol *evaluate_sub(struct expression *expr)
 	struct symbol *ltype = left->ctype;
 
 	if (is_ptr_type(ltype))
-		return evaluate_ptr_sub(expr, left, &expr->right);
+		return evaluate_ptr_sub(expr, left);
 
 	return evaluate_arith(expr, 1);
 }
-- 
1.5.0-rc2.GIT

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-06-24  8:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-24  8:04 [PATCH 6/16] remove useless argument in evaluate_ptr_sub() Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).