scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 732d6bdc22ff2b7647093953d89be464828db998
parent 3ff334c28bef9d70eee5566e0fe66616b34167bd
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu,  4 Nov 2021 15:10:58 +0100

cc2/qbe: Remove unused variable in rhs()

Diffstat:
Msrc/cmd/cc/cc2/target/qbe/cgen.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/cc/cc2/target/qbe/cgen.c b/src/cmd/cc/cc2/target/qbe/cgen.c @@ -484,7 +484,7 @@ assign(Node *np) static Node * rhs(Node *np) { - Node *tmp, aux1, aux2, aux3; + Node *tmp, aux1, aux2; Node *phi, *l = np->left, *r = np->right; Type *tp; int off, op;