Index: test/cctest/compiler/test-run-inlining.cc |
diff --git a/test/cctest/compiler/test-run-inlining.cc b/test/cctest/compiler/test-run-inlining.cc |
index 234060c7f7c1b899894f3a7659adea4387a6346e..acfeae8a129bff6e5104973948fc64954e5841d0 100644 |
--- a/test/cctest/compiler/test-run-inlining.cc |
+++ b/test/cctest/compiler/test-run-inlining.cc |
@@ -16,9 +16,9 @@ namespace { |
void AssertInlineCount(const v8::FunctionCallbackInfo<v8::Value>& args) { |
StackTraceFrameIterator it(CcTest::i_isolate()); |
int frames_seen = 0; |
- JavaScriptFrame* topmost = it.frame(); |
+ JavaScriptFrame* topmost = it.javascript_frame(); |
while (!it.done()) { |
- JavaScriptFrame* frame = it.frame(); |
+ JavaScriptFrame* frame = it.javascript_frame(); |
List<JSFunction*> functions(2); |
frame->GetFunctions(&functions); |
PrintF("%d %s, inline count: %d\n", frames_seen, |