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.
1 parent 4315c29 commit 267cc19Copy full SHA for 267cc19
src/util/simplify_expr.cpp
@@ -1363,10 +1363,13 @@ bool simplify_exprt::simplify_with(exprt &expr)
1363
}
1364
1365
1366
- else if(with_expr.old().type().id() == ID_array)
+ else if(
1367
+ with_expr.old().type().id() == ID_array ||
1368
+ with_expr.old().type().id() == ID_vector)
1369
{
- if(expr.op0().id()==ID_array ||
- expr.op0().id()==ID_constant)
1370
+ if(
1371
+ expr.op0().id() == ID_array || expr.op0().id() == ID_constant ||
1372
+ expr.op0().id() == ID_vector)
1373
1374
while(expr.operands().size()>1)
1375
0 commit comments