Skip to content
Permalink
Browse files
[Truffle] Fix merge.
  • Loading branch information
chrisseaton committed Nov 20, 2014
1 parent 506c427 commit 00b3158
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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);
}
}

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

0 comments on commit 00b3158

Please sign in to comment.