diff options
author | Roland Levillain <rpl@google.com> | 2017-07-14 14:34:22 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2017-07-14 17:25:39 +0100 |
commit | 9983e302384c12a975c8d2d5ae239f79fd8e1996 (patch) | |
tree | 4e4d269fe1a3d4f0f1b93cd972adab9f17aab8e0 /compiler/optimizing/codegen_test.cc | |
parent | bac2bd1c2fbdd94f4d4dfe83d8451f655e875e36 (diff) |
Remove the old ARM code generator from ART's Optimizing compiler.
The AArch32 VIXL-based code generator has been the default
ARM code generator in ART for some time now. The old ARM
code generator does not compile anymore; retiring it.
Test: test.py
Bug: 63316036
Change-Id: Iab8fbc4ac73eac2c1a809cd7b22fec6b619755db
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index fe25b7690d..0a8e97cf0d 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -43,8 +43,7 @@ static ::std::vector<CodegenTargetConfig> GetTargetConfigs() { ::std::vector<CodegenTargetConfig> v; ::std::vector<CodegenTargetConfig> test_config_candidates = { #ifdef ART_ENABLE_CODEGEN_arm - CodegenTargetConfig(kArm, create_codegen_arm), - CodegenTargetConfig(kThumb2, create_codegen_arm), + // TODO: Should't this be `kThumb2` instead of `kArm` here? CodegenTargetConfig(kArm, create_codegen_arm_vixl32), #endif #ifdef ART_ENABLE_CODEGEN_arm64 |