scc

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

commit cd60868d9c36b0648569295dc3de8bfeb913da21
parent b3cc864f59fe9edd44a3407e9ab814323cfb424a
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat,  3 Oct 2015 12:11:12 +0200

Add TODO in fold.c

Diffstat:
Mcc1/fold.c | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/cc1/fold.c b/cc1/fold.c @@ -480,6 +480,11 @@ change_to_comma: return NULL; } +/* + * TODO: transform simplify in a recursivity + * function, because we are losing optimization + * chances + */ Node * simplify(int op, Type *tp, Node *lp, Node *rp) {