summaryrefslogtreecommitdiff
path: root/Source/Core/Parser.ssc
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/Core/Parser.ssc
parent00dbdfbb3cd610873676050dafbb4e9bcf9d4672 (diff)
Renaming ExtractExpr into BvExtractExpr to fit naming scheme of the other bitvector operations
Diffstat (limited to 'Source/Core/Parser.ssc')
-rw-r--r--Source/Core/Parser.ssc6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Parser.ssc b/Source/Core/Parser.ssc
index e91eaf7c..8ae741ab 100644
--- a/Source/Core/Parser.ssc
+++ b/Source/Core/Parser.ssc
@@ -1617,9 +1617,9 @@ out VariableSeq! ins, out VariableSeq! outs, out QKeyValue kv) {
if (store)
e = new NAryExpr(x, new MapStore(x, allArgs.Length - 2), allArgs);
else if (bvExtract)
- e = new ExtractExpr(x, e,
- ((BvBounds)index0).Upper.ToIntSafe,
- ((BvBounds)index0).Lower.ToIntSafe);
+ e = new BvExtractExpr(x, e,
+ ((BvBounds)index0).Upper.ToIntSafe,
+ ((BvBounds)index0).Lower.ToIntSafe);
else
e = new NAryExpr(x, new MapSelect(x, allArgs.Length - 1), allArgs);