diff options
author | Chad Loder <cloder@cvs.openbsd.org> | 2005-11-29 03:42:33 +0000 |
---|---|---|
committer | Chad Loder <cloder@cvs.openbsd.org> | 2005-11-29 03:42:33 +0000 |
commit | c02f48c0aca62b7b8a4b575d9c12a043a0243ab6 (patch) | |
tree | 03e73b5ea36834312e0ceef04471afad0d4456cf /usr.bin/xlint/lint1 | |
parent | cfc56fc6306abf453873cafd56a0a18548e2071b (diff) |
Kill unused locals
Diffstat (limited to 'usr.bin/xlint/lint1')
-rw-r--r-- | usr.bin/xlint/lint1/tree.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/xlint/lint1/tree.c b/usr.bin/xlint/lint1/tree.c index 5e1346ca952..ce1490b6be3 100644 --- a/usr.bin/xlint/lint1/tree.c +++ b/usr.bin/xlint/lint1/tree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tree.c,v 1.16 2005/11/28 22:29:57 cloder Exp $ */ +/* $OpenBSD: tree.c,v 1.17 2005/11/29 03:42:32 cloder Exp $ */ /* $NetBSD: tree.c,v 1.12 1995/10/02 17:37:57 jpo Exp $ */ /* @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: tree.c,v 1.16 2005/11/28 22:29:57 cloder Exp $"; +static char rcsid[] = "$OpenBSD: tree.c,v 1.17 2005/11/29 03:42:32 cloder Exp $"; #endif #include <stdlib.h> @@ -2523,7 +2523,6 @@ bldasgn(op_t op, tnode_t *ln, tnode_t *rn) return (ntn); } - /* * Check for division by zero. Returns 1 if a division by zero is * present, 0 otherwise. @@ -2531,8 +2530,6 @@ bldasgn(op_t op, tnode_t *ln, tnode_t *rn) static int chkdbz(op_t op, tnode_t *rn) { - quad_t q; - ldbl_t r; int code; switch (op) { |