aboutsummaryrefslogtreecommitdiff
path: root/vm/compiler/Compiler.cpp
diff options
context:
space:
mode:
authorbuzbee <buzbee@google.com>2011-04-22 10:27:14 -0700
committerbuzbee <buzbee@google.com>2011-04-22 14:18:00 -0700
commit30bc0d46ae730d78c42c39cfa56a59ba3025380b (patch)
tree497bb35e8045c9c0d92c90f7dadb594e0879c0e6 /vm/compiler/Compiler.cpp
parentfad819858f84f27b4461b70a82ae11d9088bbdcb (diff)
Consolidate curFrame fields in thread storage
We ended up with two locations in the Thread structure for saved Dalvik frame pointer. This change consolidates them. Change-Id: I78f288e4e57e232f29663be930101e775bfe370f
Diffstat (limited to 'vm/compiler/Compiler.cpp')
-rw-r--r--vm/compiler/Compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/Compiler.cpp b/vm/compiler/Compiler.cpp
index b0c2e60ac..d73006670 100644
--- a/vm/compiler/Compiler.cpp
+++ b/vm/compiler/Compiler.cpp
@@ -222,7 +222,7 @@ bool dvmCompilerSetupCodeCache(void)
static void crawlDalvikStack(Thread *thread, bool print)
{
- void *fp = thread->curFrame;
+ void *fp = thread->interpSave.curFrame;
StackSaveArea* saveArea = NULL;
int stackLevel = 0;