Skip to content

Commit

Permalink
Merge pull request #312 from tgiphil/master
Browse files Browse the repository at this point in the history
Fixed issue with JumpOptimizationStage
  • Loading branch information
tgiphil committed Jan 25, 2016
2 parents d9bd6d7 + 12043f7 commit 94463b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected override void Run()
{
var trace = CreateTraceLog();

for (int f = 0; f < BasicBlocks.Count - 2; f++)
for (int f = 0; f < BasicBlocks.Count - 1; f++)
{
var from = BasicBlocks[f];
var next = BasicBlocks[f + 1];
Expand Down

0 comments on commit 94463b1

Please sign in to comment.