From: trevor_hansen Date: Sat, 13 Feb 2010 12:20:28 +0000 (+0000) Subject: Bugfix. Bitblasting failed when a BVSX didn't increase the length X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=0a6c61b5dc0417ffc2df76f78313febcc42be95c;p=francis%2Fstp.git Bugfix. Bitblasting failed when a BVSX didn't increase the length git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@613 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/to-sat/BitBlast.cpp b/src/to-sat/BitBlast.cpp index 3901298..57eafce 100644 --- a/src/to-sat/BitBlast.cpp +++ b/src/to-sat/BitBlast.cpp @@ -187,7 +187,7 @@ namespace BEEV if (result_width == arg_width) { //nothing to sign extend - result = arg; + result = bbarg; break; } else