diff options
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; |