Skip to content

Commit 061a0eb

Browse files
Remove useless rename_expr calls
The return value was ignored and thus there was no use in making these calls.
1 parent 211525a commit 061a0eb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/goto-instrument/accelerate/acceleration_utils.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,13 +1120,11 @@ bool acceleration_utilst::assign_array(
11201120
{
11211121
replace_expr(
11221122
loop_counter, from_integer(0, loop_counter.type()), lower_bound);
1123-
simplify_expr(lower_bound, ns);
11241123
}
11251124
else
11261125
{
11271126
replace_expr(
11281127
loop_counter, from_integer(0, loop_counter.type()), upper_bound);
1129-
simplify_expr(upper_bound, ns);
11301128
}
11311129

11321130
if(stride==0)

0 commit comments

Comments
 (0)