aboutsummaryrefslogtreecommitdiff
path: root/vm/compiler/codegen/x86/CodegenInterface.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-10-09 18:07:14 -0700
committerElliott Hughes <enh@google.com>2012-10-09 18:07:14 -0700
commit4b3f78e73109604b817294a9c21bc3653328e3fb (patch)
treeb703f593c53e226ab68daad714ba0cf9e3d0ec1a /vm/compiler/codegen/x86/CodegenInterface.cpp
parent3726817959d2bd8bea87726338c05464f7f29e3b (diff)
Don't disable inlining for ARM.
I think there was confusion here between method inlining and the method compiler. Just because the latter isn't yet functional doesn't mean we don't want the former for those targets that support it. Bug: 7179010 Change-Id: If0de856b93615f01dfc5e8977d5c97f550cec15f
Diffstat (limited to 'vm/compiler/codegen/x86/CodegenInterface.cpp')
-rw-r--r--vm/compiler/codegen/x86/CodegenInterface.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/vm/compiler/codegen/x86/CodegenInterface.cpp b/vm/compiler/codegen/x86/CodegenInterface.cpp
index aade180e0..c99fadd0a 100644
--- a/vm/compiler/codegen/x86/CodegenInterface.cpp
+++ b/vm/compiler/codegen/x86/CodegenInterface.cpp
@@ -189,8 +189,7 @@ void dvmJitInstallClassObjectPointers(CompilationUnit *cUnit, char *codeAddress)
void dvmCompilerMethodMIR2LIR(CompilationUnit *cUnit)
{
- ALOGE("Method-based JIT not supported for the x86 target");
- dvmAbort();
+ // Method-based JIT not supported for x86.
}
void dvmJitScanAllClassPointers(void (*callback)(void *))