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 e8728fc + 7834962 commit 12660ceCopy full SHA for 12660ce
src/solvers/smt2/smt2_conv.cpp
@@ -1816,9 +1816,10 @@ void smt2_convt::convert_expr(const exprt &expr)
1816
// the arguments of the shift need to have the same width
1817
out << "(bvlshr ";
1818
flatten2bv(extractbit_expr.src());
1819
+ out << ' ';
1820
typecast_exprt tmp(extractbit_expr.index(), extractbit_expr.src().type());
1821
convert_expr(tmp);
- out << ")) bin1)"; // bvlshr, extract, =
1822
+ out << ")) #b1)"; // bvlshr, extract, =
1823
}
1824
1825
else if(expr.id()==ID_extractbits)
0 commit comments