diff options
Diffstat (limited to 'compiler/optimizing/codegen_test.cc')
-rw-r--r-- | compiler/optimizing/codegen_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index 14a419fcd8..75b0ea2a08 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -56,7 +56,7 @@ static ::std::vector<CodegenTargetConfig> GetTargetConfigs() { }; for (const CodegenTargetConfig& test_config : test_config_candidates) { - if (CanExecute(test_config.GetInstructionSet())) { + if (CanExecuteISA(test_config.GetInstructionSet())) { v.push_back(test_config); } } |