From 36cf0efd7c28ec3ecccbb000bd0491777771224a Mon Sep 17 00:00:00 2001 From: Santiago Aboy Solanes Date: Wed, 8 Nov 2023 14:33:15 +0000 Subject: 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 --- compiler/driver/compiler_options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/driver/compiler_options.cc') 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; -- cgit v1.2.3-59-g8ed1b