summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyCmd.ssc
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2010-02-20 01:24:59 +0000
committerGravatar qadeer <unknown>2010-02-20 01:24:59 +0000
commite516262abbc3276777a222481757cd74dab1d497 (patch)
tree9a3f41308b9d9bfbe0ad1be2275d3d42078f92fe /Source/Core/AbsyCmd.ssc
parent5827ea8d4d4771174a864d5425d89bec22d62fa3 (diff)
added an option /doModSetAnalysis specially for Zvonimir
changed liveVarsBefore from Boogie.Set to Generics.Set
Diffstat (limited to 'Source/Core/AbsyCmd.ssc')
-rw-r--r--Source/Core/AbsyCmd.ssc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AbsyCmd.ssc b/Source/Core/AbsyCmd.ssc
index da4f4247..926724cb 100644
--- a/Source/Core/AbsyCmd.ssc
+++ b/Source/Core/AbsyCmd.ssc
@@ -696,7 +696,7 @@ namespace Microsoft.Boogie
// VC generation and SCC computation
public BlockSeq! Predecessors;
- public Set liveVarsBefore;
+ public Set<Variable!> liveVarsBefore;
public bool IsLive(Variable! v) {
if (liveVarsBefore == null) return true;
return liveVarsBefore.Contains(v);