scc

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

commit 427c2b8aa197a491481526ed26d2650370c23975
parent 7ab3e04d0e3943e2f70bec9579b606a80357dbe6
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 19 Apr 2014 06:32:16 +0200

Fix indent error

Diffstat:
Mexpr.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/expr.c b/expr.c @@ -244,8 +244,8 @@ static Node * exp2cond(Node *np, char neg) { if (ISNODECMP(np)) { - np->u.op ^= neg; - return np; + np->u.op ^= neg; + return np; } return compare(ONE ^ neg, np, constcode(zero));