diff options
author | 2020-02-12 10:52:22 +0000 | |
---|---|---|
committer | 2020-02-13 09:14:02 +0000 | |
commit | 54f4fbd1a6834f06dc9b644b865423fdc03afb15 (patch) | |
tree | 4f55b2a196453a8a197a1787a688cc299682e55d /compiler/optimizing/instruction_simplifier.cc | |
parent | 2d3de3a40015af07f7645a298f77b398af0c6c2c (diff) |
Remove MIPS support from Optimizing.
Test: aosp_taimen-userdebug boots.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 147346243
Change-Id: I97fdc15e568ae3fe390efb1da690343025f84944
Diffstat (limited to 'compiler/optimizing/instruction_simplifier.cc')
-rw-r--r-- | compiler/optimizing/instruction_simplifier.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/compiler/optimizing/instruction_simplifier.cc b/compiler/optimizing/instruction_simplifier.cc index 17b5ad5376..817ff673cc 100644 --- a/compiler/optimizing/instruction_simplifier.cc +++ b/compiler/optimizing/instruction_simplifier.cc @@ -276,17 +276,6 @@ bool InstructionSimplifierVisitor::TryCombineVecMultiplyAccumulate(HVecMul* mul) return false; } break; - case InstructionSet::kMips: - case InstructionSet::kMips64: - if (!(type == DataType::Type::kUint8 || - type == DataType::Type::kInt8 || - type == DataType::Type::kUint16 || - type == DataType::Type::kInt16 || - type == DataType::Type::kInt32 || - type == DataType::Type::kInt64)) { - return false; - } - break; default: return false; } |