Index: runtime/vm/profiler_service.cc |
diff --git a/runtime/vm/profiler_service.cc b/runtime/vm/profiler_service.cc |
index 10b2e9727b29aaf7ba7353f50bc2848696a0eebe..5290e0697d0be85c47e5d1afba05d6069c55d92d 100644 |
--- a/runtime/vm/profiler_service.cc |
+++ b/runtime/vm/profiler_service.cc |
@@ -1103,8 +1103,9 @@ class ProfileCodeInlinedFunctionsCache : public ValueObject { |
CacheEntry* cache_entry = &cache_[NextFreeIndex()]; |
cache_entry->pc = pc; |
cache_entry->offset = offset; |
- code.GetInlinedFunctionsAt(offset, &(cache_entry->inlined_functions), |
- &(cache_entry->inlined_token_positions)); |
+ code.GetInlinedFunctionsAtInstruction( |
+ offset, &(cache_entry->inlined_functions), |
+ &(cache_entry->inlined_token_positions)); |
if (cache_entry->inlined_functions.length() == 0) { |
*inlined_functions = NULL; |
*inlined_token_positions = NULL; |