From c043d006845afef99b17aeab8bb6d6da1a42ad37 Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Fri, 14 Jul 2017 16:39:16 +0100 Subject: Remove the old ARM assemblers from ART. Now that the old ARM code generator for ART's Optimizing compiler is gone, these assemblers no longer have users; retiring them. Test: test.py Bug: 63316036 Change-Id: Iaea42432a9e0d3288b71615f85c58846c0336944 --- compiler/optimizing/instruction_simplifier_arm.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/optimizing') diff --git a/compiler/optimizing/instruction_simplifier_arm.cc b/compiler/optimizing/instruction_simplifier_arm.cc index 3fc7c50bb1..fe22595258 100644 --- a/compiler/optimizing/instruction_simplifier_arm.cc +++ b/compiler/optimizing/instruction_simplifier_arm.cc @@ -147,8 +147,8 @@ void InstructionSimplifierArmVisitor::VisitArrayGet(HArrayGet* instruction) { Primitive::Type type = instruction->GetType(); // TODO: Implement reading (length + compression) for String compression feature from - // negative offset (count_offset - data_offset). Thumb2Assembler does not support T4 - // encoding of "LDR (immediate)" at the moment. + // negative offset (count_offset - data_offset). Thumb2Assembler (now removed) did + // not support T4 encoding of "LDR (immediate)", but ArmVIXLMacroAssembler might. // Don't move array pointer if it is charAt because we need to take the count first. if (mirror::kUseStringCompression && instruction->IsStringCharAt()) { return; -- cgit v1.2.3-59-g8ed1b