Fix btor concat

This commit is contained in:
Clifford Wolf 2017-12-09 05:58:14 +01:00
parent fd83e3442d
commit 63343aeaaa
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ struct BtorWorker
if (nid >= 0) { if (nid >= 0) {
int sid = get_bv_sid(width+upper-lower+1); int sid = get_bv_sid(width+upper-lower+1);
nid4 = next_nid++; nid4 = next_nid++;
btorf("%d concat %d %d %d\n", nid4, sid, nid, nid3); btorf("%d concat %d %d %d\n", nid4, sid, nid3, nid);
} }
width += upper-lower+1; width += upper-lower+1;