diff options
-rw-r--r-- | ops.h | 1 | ||||
-rw-r--r-- | qbe.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ /* arithmetic and bits */ OP(IADD, "add") OP(ISUB, "sub") +OP(INEG, "neg") OP(IDIV, "div") OP(IMUL, "mul") OP(IUDIV, "udiv") @@ -803,7 +803,7 @@ funcexpr(struct func *f, struct expr *e) return funcload(f, e->type, (struct lvalue){r}); case TSUB: r = funcexpr(f, e->base); - return funcinst(f, ISUB, qbetype(e->type).base, mkintconst(0), r); + return funcinst(f, INEG, qbetype(e->type).base, r, NULL); } fatal("internal error; unknown unary expression"); break; |