diff options
author | stobies <unknown> | 2009-09-07 06:44:27 +0000 |
---|---|---|
committer | stobies <unknown> | 2009-09-07 06:44:27 +0000 |
commit | a4f2bf6414f35907ab135cc6723683fe632467c4 (patch) | |
tree | a642e976f34ec4abb203ede7ac7e819161eefc0e /Source/VCGeneration | |
parent | 00dbdfbb3cd610873676050dafbb4e9bcf9d4672 (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.ssc | 4 |
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));
|