Skip to content

Commit

Permalink
Kill esil_weak_eq op duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
condret committed Dec 3, 2024
1 parent 6e369f4 commit 9f73eb1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libr/esil/esil.c
Original file line number Diff line number Diff line change
Expand Up @@ -4049,7 +4049,6 @@ R_API bool r_esil_setup_ops(REsil *esil) {
ret &= OP ("!=", esil_negeq, 0, 1, OT_MATH | OT_REGW);
ret &= OP ("=", esil_eq, 0, 2, OT_REGW);
ret &= OP (":=", esil_weak_eq, 0, 2, OT_REGW);
ret &= OP (":= ", esil_weak_eq, 0, 2, OT_REGW);
ret &= OP ("L*", esil_long_mul, 2, 2, OT_MATH);
ret &= OP ("*", esil_mul, 1, 2, OT_MATH);
ret &= OP ("*=", esil_muleq, 0, 2, OT_MATH | OT_REGW);
Expand Down

0 comments on commit 9f73eb1

Please sign in to comment.