scc

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

commit b1d8e19834a16e35b4b9cc089a982c7a4a8390c7
parent 75bca9be6aa2a8cf0d07952134b14304e686af2e
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Sat,  3 Oct 2015 15:48:32 -0400

Remove dead if()

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

diff --git a/cc1/expr.c b/cc1/expr.c @@ -566,8 +566,6 @@ arguments(Node *np) arg = convert(arg, doubletype, 1); break; } - if (arg->type->op == INT) - arg = promote(arg); par = node(OPAR, arg->type, par, arg); continue; }