Navigation Menu

Skip to content

Commit

Permalink
[Truffle] Fix merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Nov 20, 2014
1 parent 506c427 commit 00b3158
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1832,7 +1832,7 @@ public RubyArray initialize(VirtualFrame frame, RubyArray array, int size, Undef
}
} finally {
if (CompilerDirectives.inInterpreter()) {
((RubyRootNode) getRootNode()).reportLoopCountThroughBlocks(count);
getRootNode().reportLoopCount(count);
}
}

Expand Down Expand Up @@ -2214,7 +2214,7 @@ public RubyArray mapFloat(VirtualFrame frame, RubyArray array, RubyProc block) {
}
} finally {
if (CompilerDirectives.inInterpreter()) {
((RubyRootNode) getRootNode()).reportLoopCountThroughBlocks(count);
getRootNode().reportLoopCount(count);
}
}

Expand Down

0 comments on commit 00b3158

Please sign in to comment.