diff options
author | Michael Forney <mforney@mforney.org> | 2022-02-10 15:35:56 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2022-02-10 15:35:56 -0800 |
commit | 28fdb0f046184e567e85b9bb40dc942ca1739d9f (patch) | |
tree | f292aa8a8f6934be35ca9982effb5bd5e811d368 /ops.h | |
parent | 704382569df976ab94d2b4d6ef7b5926c2de5de0 (diff) |
qbe: Switch to unary negation
This fixes bugs involving floating point negative zero.
Diffstat (limited to 'ops.h')
-rw-r--r-- | ops.h | 1 |
1 files changed, 1 insertions, 0 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") |