scc

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

commit 2351a8a49137ea7ad30b9b30007cd1c5d51dc67c
parent 90baec013ea2a3331d6a87c064a5924c9513d4f6
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;