@@ -1324,6 +1324,22 @@ static int simplify_compare_constant(struct instruction *insn, long long value)
if ((value & bits) != bits)
return replace_with_value(insn, 1);
break;
+ case OP_SET_B:
+ if (bits >= value)
+ return replace_with_value(insn, 0);
+ break;
+ case OP_SET_BE:
+ if (bits > value)
+ return replace_with_value(insn, 0);
+ break;
+ case OP_SET_AE:
+ if (bits > value)
+ return replace_with_value(insn, 1);
+ break;
+ case OP_SET_A:
+ if (bits >= value)
+ return replace_with_value(insn, 1);
+ break;
case OP_SET_LE:
value = sign_extend(value, def->size);
if (bits & sign_bit(def->size)) {
@@ -12,7 +12,6 @@ int cmpu_ior_gt_lt(int a) { return ((a | MASK) > (MASK - 1)) EQ(1); }
/*
* check-name: cmpu-or0
* check-command: test-linearize -Wno-decl $file
- * check-known-to-fail
*
* check-output-ignore
* check-output-returns: 1
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> --- simplify.c | 16 ++++++++++++++++ validation/optim/cmpu-or0.c | 1 - 2 files changed, 16 insertions(+), 1 deletion(-)