diff options
author | Elliott Hughes <enh@google.com> | 2012-12-06 15:24:32 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2012-12-06 15:27:38 -0800 |
commit | 3d20456e5dc28cbbe3cf8df092e9ffafee6fad65 (patch) | |
tree | d856d034878a0c5114ab960b1127449d26c50934 /vm/compiler/codegen/x86/AnalysisO1.cpp | |
parent | 318e4faf2a3c3b6a7b4bc442c9220160f21972e3 (diff) | |
download | android_dalvik-3d20456e5dc28cbbe3cf8df092e9ffafee6fad65.tar.gz android_dalvik-3d20456e5dc28cbbe3cf8df092e9ffafee6fad65.tar.bz2 android_dalvik-3d20456e5dc28cbbe3cf8df092e9ffafee6fad65.zip |
Remove dvmFindInterfaceMethodInCache2.
We can just use dvmFindInterfaceMethodInCache directly.
Change-Id: I2f3a660262ba7a39c05689df160ebdd2e7ec38a5
Diffstat (limited to 'vm/compiler/codegen/x86/AnalysisO1.cpp')
-rw-r--r-- | vm/compiler/codegen/x86/AnalysisO1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/x86/AnalysisO1.cpp b/vm/compiler/codegen/x86/AnalysisO1.cpp index 2c816e3aa..a9fd5ce8a 100644 --- a/vm/compiler/codegen/x86/AnalysisO1.cpp +++ b/vm/compiler/codegen/x86/AnalysisO1.cpp @@ -3717,7 +3717,7 @@ int beforeCall(const char* target) { //spill all live registers (!strcmp(target, "dvmAllocArrayByClass")) || (!strcmp(target, "dvmAllocPrimitiveArray")) || (!strcmp(target, "dvmInterpHandleFillArrayData")) || - (!strcmp(target, "dvmFindInterfaceMethodInCache2")) || + (!strcmp(target, "dvmFindInterfaceMethodInCache")) || (!strcmp(target, "dvmNcgHandlePackedSwitch")) || (!strcmp(target, "dvmNcgHandleSparseSwitch")) || (!strcmp(target, "dvmCanPutArrayElement")) || |