diff options
author | 2023-11-08 14:33:15 +0000 | |
---|---|---|
committer | 2023-11-14 14:21:01 +0000 | |
commit | 36cf0efd7c28ec3ecccbb000bd0491777771224a (patch) | |
tree | 6c4cbb2ad60c75f5ba028dcc9346186f8eedeaef /compiler/driver/compiler_options.cc | |
parent | b9bf15f971836dc49f30fcb721bf835e01dfaa9e (diff) |
Remove regalloc_gc flag from our test infra
Since we removed the graph color (aosp/2584792),
the regalloc_gc flag is equivalent to optimizing.
Test: Presubmit
Bug: 281793697
Change-Id: Ifc08c7e32205c6d650acfa2d4ea6b9dc0a13b057
Diffstat (limited to 'compiler/driver/compiler_options.cc')
-rw-r--r-- | compiler/driver/compiler_options.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc index 1ff7b1f55f..45664b792e 100644 --- a/compiler/driver/compiler_options.cc +++ b/compiler/driver/compiler_options.cc @@ -123,7 +123,7 @@ bool CompilerOptions::ParseRegisterAllocationStrategy(const std::string& option, LOG(ERROR) << "Graph coloring allocator has been removed, using linear scan instead."; register_allocation_strategy_ = RegisterAllocator::Strategy::kRegisterAllocatorLinearScan; } else { - *error_msg = "Unrecognized register allocation strategy. Try linear-scan, or graph-color."; + *error_msg = "Unrecognized register allocation strategy. Try linear-scan."; return false; } return true; |