summaryrefslogtreecommitdiff
path: root/Source/VCGeneration
diff options
context:
space:
mode:
authorGravatar stobies <unknown>2009-09-07 06:44:27 +0000
committerGravatar stobies <unknown>2009-09-07 06:44:27 +0000
commita4f2bf6414f35907ab135cc6723683fe632467c4 (patch)
treea642e976f34ec4abb203ede7ac7e819161eefc0e /Source/VCGeneration
parent00dbdfbb3cd610873676050dafbb4e9bcf9d4672 (diff)
Renaming ExtractExpr into BvExtractExpr to fit naming scheme of the other bitvector operations
Diffstat (limited to 'Source/VCGeneration')
-rw-r--r--Source/VCGeneration/VC.ssc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/VCGeneration/VC.ssc b/Source/VCGeneration/VC.ssc
index eb54d1b9..bfdcf6c6 100644
--- a/Source/VCGeneration/VC.ssc
+++ b/Source/VCGeneration/VC.ssc
@@ -2686,8 +2686,8 @@ namespace VC
// expression, thus just return -1
return -1;
}
- else if (expr is Bpl.ExtractExpr) {
- Bpl.ExtractExpr ex = (Bpl.ExtractExpr) expr;
+ else if (expr is Bpl.BvExtractExpr) {
+ Bpl.BvExtractExpr ex = (Bpl.BvExtractExpr) expr;
Bpl.Expr e0 = ex.Bitvector;
Bpl.Expr e1 = new LiteralExpr(Token.NoToken, BigNum.FromInt(ex.Start));
Bpl.Expr e2 = new LiteralExpr(Token.NoToken, BigNum.FromInt(ex.End));