diff options
| author | 2017-07-15 08:58:21 +0000 | |
|---|---|---|
| committer | 2017-07-15 08:58:21 +0000 | |
| commit | 65d793bfa91085db5f84b6ee90a3dcdafcafed1b (patch) | |
| tree | c94b0a8ea3a08a8c29feb4fcccbc0793e85f8ad5 /compiler/optimizing/codegen_test.cc | |
| parent | 731af335f4e15e82b8972d63b6424d5228f06eec (diff) | |
| parent | 9983e302384c12a975c8d2d5ae239f79fd8e1996 (diff) | |
Merge "Remove the old ARM code generator from ART's Optimizing compiler."
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 |