diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-06-25 14:15:06 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-06-25 14:15:06 +0000 |
commit | e61fd353c06f51f1b8ca5af69997d0185b7659b2 (patch) | |
tree | 984d0609bf71e7705117e19eb836ddf203be6d01 /compiler/optimizing/optimizing_compiler.cc | |
parent | 20550910e608ed7d86db97927d2ce9d2191061a4 (diff) | |
download | art-e61fd353c06f51f1b8ca5af69997d0185b7659b2.tar.gz art-e61fd353c06f51f1b8ca5af69997d0185b7659b2.tar.bz2 art-e61fd353c06f51f1b8ca5af69997d0185b7659b2.zip |
Revert "Re-enable tests with the optimizing compiler."
This reverts commit 20550910e608ed7d86db97927d2ce9d2191061a4.
Change-Id: Ic28b719946c795378838a18162a2a2b2cf41a0e8
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index ccacbef401..56029aa30b 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -101,10 +101,6 @@ CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_ite } InstructionSet instruction_set = GetCompilerDriver()->GetInstructionSet(); - // The optimizing compiler currently does not have a Thumb2 assembler. - if (instruction_set == kThumb2) { - instruction_set = kArm; - } CodeGenerator* codegen = CodeGenerator::Create(&arena, graph, instruction_set); if (codegen == nullptr) { if (shouldCompile) { |