Skip to content

Commit 927dd9e

Browse files
committed
Cleanup according to the review
1 parent 94845b2 commit 927dd9e

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

Source/Core/AST/Implementation.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,6 @@ public override void Typecheck(TypecheckingContext tc)
660660
if (!graph.Reducible)
661661
{
662662
this.ConvertToReducible(null);
663-
tc.Impl = this;
664663
graph = Program.GraphFromImpl(this);
665664
}
666665

Source/ExecutionEngine/CommandLineOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,7 @@ skip any implementation with resolution or type checking errors
18121812
default is -1, which means loops are not unrolled
18131813
/extractLoops
18141814
convert all irreducible loops to reducible forms by node splitting
1815-
and extract reducible loops into recursive procedures and
1815+
and extract all loops into recursive procedures
18161816
/soundLoopUnrolling
18171817
sound loop unrolling
18181818
/kInductionDepth:<k>

Source/VCGeneration/Transformations/RemoveBackEdges.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,9 @@ private void ConvertCfg2DagStandard(Implementation impl, Dictionary<Block, List<
8383

8484
#region Create the graph by adding the source node and each edge
8585

86-
// Graph<Block> g = Program.GraphFromImpl(impl);
8786
Graph<Block> g = impl.ConvertToReducible(generator.Options);
8887

8988
#endregion
90-
91-
//Graph<Block> g = program.ProcessLoops(impl);
92-
9389
#endregion
9490

9591
#region Cut the backedges, push assert/assume statements from loop header into predecessors, change them all into assume statements at top of loop, introduce havoc statements

0 commit comments

Comments
 (0)