diff options
author | 2016-02-03 12:28:41 +0000 | |
---|---|---|
committer | 2016-02-03 12:28:41 +0000 | |
commit | a20748aceb63396c5e09366968bbc71308f745df (patch) | |
tree | 6d1ae7382f807ba8eddc0c8b45aa131bc0554888 /compiler/optimizing/inliner.cc | |
parent | 905cb88fa4a8e3b7fd29424a35572d0d19c7bce5 (diff) | |
parent | 2aba7cd68851d79643338f57fcf2dff3cbf81895 (diff) |
Merge "Implement first kind of polymorphic inlining on MIPS."
Diffstat (limited to 'compiler/optimizing/inliner.cc')
-rw-r--r-- | compiler/optimizing/inliner.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc index a839d2dee8..9b91b53813 100644 --- a/compiler/optimizing/inliner.cc +++ b/compiler/optimizing/inliner.cc @@ -392,8 +392,8 @@ bool HInliner::TryInlinePolymorphicCall(HInvoke* invoke_instruction, << invoke_instruction->DebugName(); // This optimization only works under JIT for now. DCHECK(Runtime::Current()->UseJit()); - if (graph_->GetInstructionSet() == kMips || graph_->GetInstructionSet() == kMips64) { - // TODO: Support HClassTableGet for mips and mips64. + if (graph_->GetInstructionSet() == kMips64) { + // TODO: Support HClassTableGet for mips64. return false; } ClassLinker* class_linker = caller_compilation_unit_.GetClassLinker(); |