commit 98eeeac3fe653c93038753059c1d35cc59291145
parent 183aa643c31403f78ae47e6cd6e86fc639c33c6b
Author: Quentin Rameau <quinq@fifth.space>
Date: Fri, 3 Feb 2017 18:00:03 +0100
[cc1] fix a type introduced in 73173f3
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/cc1/expr.c b/cc1/expr.c
@@ -240,7 +240,6 @@ numericaluop(int op, Node *np)
if (op == OADD)
return np;
return simplify(op, np->type, np, NULL);
- return node(op, np->type, np, NULL);
}
/* TODO: check validity of types */