scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit c147c6119701d0534777b62521f36b4367967b66
parent a5ecfeb71efdc36674c5197b87289db4ec41135e
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 21 Apr 2016 17:16:42 +0200

[cc2-qbe] Fix typo in variable name v2

Same error than the one fixed in 6ea8920

Diffstat:
Mcc2/arch/qbe/cgen.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc2/arch/qbe/cgen.c b/cc2/arch/qbe/cgen.c @@ -267,6 +267,6 @@ sethi(Node *np) np->complex = rp->complex; } if (np->complex == 0) - ++rp->complex; + ++np->complex; return np; }