diff options
| author | 2014-06-24 16:08:12 +0000 | |
|---|---|---|
| committer | 2014-06-23 21:45:06 +0000 | |
| commit | 1528b02c4d5241e785bb680f13de70c355e67429 (patch) | |
| tree | 79eefb2dd1ae2cade357ef5d8367973bd08b0a34 /compiler/optimizing/optimizing_compiler.cc | |
| parent | a76724f4bc4a8d36c6c99243835b8e3ddf1eb2d7 (diff) | |
| parent | 20dfc797dc631bf8d655dcf123f46f13332d3074 (diff) | |
Merge "Add some more instruction support to optimizing compiler."
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) { |