We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f68a2f2 + 897034a commit 240daacCopy full SHA for 240daac
src/util/simplify_expr_pointer.cpp
@@ -467,6 +467,12 @@ simplify_exprt::resultt<> simplify_exprt::simplify_inequality_address_of(
467
{
468
return make_boolean_expr(expr.id() != ID_equal);
469
}
470
+ else if(
471
+ tmp0_object.id() == ID_string_constant &&
472
+ tmp1_object.id() == ID_string_constant && tmp0_object == tmp1_object)
473
+ {
474
+ return make_boolean_expr(expr.id() == ID_equal);
475
+ }
476
477
return unchanged(expr);
478
0 commit comments