commit 98eeeac3fe653c93038753059c1d35cc59291145
Author:     Quentin Rameau <[email protected]>
AuthorDate: Fri Feb 3 18:00:03 2017 +0100
Commit:     Quentin Rameau <[email protected]>
CommitDate: Fri Feb 3 18:00:03 2017 +0100

    [cc1] fix a type introduced in 73173f3

diff --git a/cc1/expr.c b/cc1/expr.c
index 8cd8b59..8dfd00b 100644
--- 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 */

Reply via email to