diff options
author | 2010-08-04 21:52:41 +0000 | |
---|---|---|
committer | 2010-08-04 21:52:41 +0000 | |
commit | 471bfd72d5c49ae66f0c64504e5eacc006f083f1 (patch) | |
tree | 363aa99233d98483f7d7175eaa751795e9c8ba54 /Source/Core/DeadVarElim.ssc | |
parent | 043bb35883b8b71dfb8a70c3d9abe6a79a6ed212 (diff) |
Boogie: Removed trailing spaces in code
Diffstat (limited to 'Source/Core/DeadVarElim.ssc')
-rw-r--r-- | Source/Core/DeadVarElim.ssc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/DeadVarElim.ssc b/Source/Core/DeadVarElim.ssc index 4e3a431f..1a5d0b30 100644 --- a/Source/Core/DeadVarElim.ssc +++ b/Source/Core/DeadVarElim.ssc @@ -146,7 +146,7 @@ namespace Microsoft.Boogie insideOldExpr ++;
node.Expr = this.VisitExpr(node.Expr);
insideOldExpr --;
- return node;
+ return node; }
public override Expr! VisitIdentifierExpr(IdentifierExpr! node) {
@@ -596,12 +596,12 @@ namespace Microsoft.Boogie predEdges.Add(b, new Set<Block!>());
}
- nodes.Add(b);
+ nodes.Add(b); }
private void addEdge(Block! src, Block! tgt) {
registerNode(src);
- registerNode(tgt);
+ registerNode(tgt); succEdges[src].Add(tgt);
predEdges[tgt].Add(src);
@@ -975,7 +975,7 @@ namespace Microsoft.Boogie // Continue with intra propagation
GenKillWeight! summary = getWeightCall((CallCmd!)cmd);
- prop = summary.getLiveVars(prop);
+ prop = summary.getLiveVars(prop); } else {
LiveVariableAnalysis.Propagate(cmd, prop);
}
@@ -1156,7 +1156,7 @@ namespace Microsoft.Boogie private static GenKillWeight! getWeightAfterCall(Cmd! cmd) {
if(weightCacheAfterCall.ContainsKey(cmd))
- return weightCacheAfterCall[cmd];
+ return weightCacheAfterCall[cmd]; Set<Variable!>! gen = new Set<Variable!>();
Set<Variable!>! kill = new Set<Variable!>();
@@ -1187,7 +1187,7 @@ namespace Microsoft.Boogie private static GenKillWeight! getWeightBeforeCall(Cmd! cmd) {
assert (cmd is CallCmd);
if(weightCacheBeforeCall.ContainsKey(cmd))
- return weightCacheBeforeCall[cmd];
+ return weightCacheBeforeCall[cmd]; Set<Variable!>! gen = new Set<Variable!>();
Set<Variable!>! kill = new Set<Variable!>();
|