summaryrefslogtreecommitdiff
path: root/Source/Core/BitvectorAnalysis.cs
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2013-07-22 21:17:07 +0100
committerGravatar Ally Donaldson <unknown>2013-07-22 21:17:07 +0100
commit12f3c4d7f530265c966bc72764d17e08a47aa4c0 (patch)
tree8d9f4c144e88ebe5c748042fcb07b0474a64d1f2 /Source/Core/BitvectorAnalysis.cs
parent42bf19b1e4fdde3d3a936a11d2e9eeb95ddd43dd (diff)
Started to remove ...Seq classes
Diffstat (limited to 'Source/Core/BitvectorAnalysis.cs')
-rw-r--r--Source/Core/BitvectorAnalysis.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/BitvectorAnalysis.cs b/Source/Core/BitvectorAnalysis.cs
index 8b35ffcb..0bd3123b 100644
--- a/Source/Core/BitvectorAnalysis.cs
+++ b/Source/Core/BitvectorAnalysis.cs
@@ -125,7 +125,7 @@ namespace Microsoft.Boogie {
else {
MapDisjointSet mapDisjointSet = disjointSet as MapDisjointSet;
Debug.Assert(mapDisjointSet != null);
- TypeSeq newArguments = new TypeSeq();
+ List<Type> newArguments = new List<Type>();
Type result = NewType(mapType.Result, mapDisjointSet.Result);
bool newTypeNeeded = (result != mapType.Result);
for (int i = 0; i < mapType.Arguments.Count; i++) {
@@ -528,7 +528,7 @@ namespace Microsoft.Boogie {
DiscoverIntAndBv32Functions(program);
BvType bv32Type = new BvType(32);
- VariableSeq bv32In = new VariableSeq(new Formal(Token.NoToken, new TypedIdent(Token.NoToken, "in", bv32Type), true));
+ List<Variable> bv32In = new List<Variable>(new Formal(Token.NoToken, new TypedIdent(Token.NoToken, "in", bv32Type), true));
Formal bv32Out = new Formal(Token.NoToken, new TypedIdent(Token.NoToken, "out", bv32Type), false);
bv32Id = new Function(Token.NoToken, "bv32Id", bv32In, bv32Out);
bv32Id.Body = new IdentifierExpr(Token.NoToken, bv32In[0]);