diff options
Diffstat (limited to 'vm/compiler/Frontend.cpp')
| -rw-r--r-- | vm/compiler/Frontend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/Frontend.cpp b/vm/compiler/Frontend.cpp index 473f3d0d7..75be70314 100644 --- a/vm/compiler/Frontend.cpp +++ b/vm/compiler/Frontend.cpp @@ -392,7 +392,7 @@ CompilerMethodStats *dvmCompilerAnalyzeMethodBody(const Method *method, static bool filterMethodByCallGraph(Thread *thread, const char *curMethodName) { /* Crawl the Dalvik stack frames and compare the method name*/ - StackSaveArea *ssaPtr = ((StackSaveArea *) thread->curFrame) - 1; + StackSaveArea *ssaPtr = ((StackSaveArea *) thread->interpSave.curFrame) - 1; while (ssaPtr != ((StackSaveArea *) NULL) - 1) { const Method *method = ssaPtr->method; if (method) { |
