aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
-rw-r--r--simplify.c4
-rw-r--r--validation/optim/simplify-neg-not.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/simplify.c b/simplify.c
index 4734667e..31f3bb6d 100644
--- a/simplify.c
+++ b/simplify.c
@@ -1477,6 +1477,10 @@ static int simplify_unop(struct instruction *insn)
return replace_pseudo(insn, &insn->src1, src);
case OP_NEG: // -(-x) --> x
return replace_with_pseudo(insn, def->src);
+ case OP_NOT:
+ insn->opcode = OP_ADD; // -(~x) --> x + 1
+ insn->src2 = value_pseudo(1);
+ return replace_pseudo(insn, &insn->src1, def->src);
case OP_SUB:
insn->opcode = OP_SUB; // -(x - y) --> y - x
use_pseudo(insn, def->src1, &insn->src2);
diff --git a/validation/optim/simplify-neg-not.c b/validation/optim/simplify-neg-not.c
index 4bd0abfb..e92352cf 100644
--- a/validation/optim/simplify-neg-not.c
+++ b/validation/optim/simplify-neg-not.c
@@ -3,7 +3,6 @@ int foo(int x) { return -(~x) == x + 1; }
/*
* check-name: simplify-neg-not
* check-command: test-linearize -Wno-decl $file
- * check-known-to-fail
*
* check-output-ignore
* check-output-contains: ret\\..*\\$1