diff options
Diffstat (limited to 'runtime/parsed_options.cc')
-rw-r--r-- | runtime/parsed_options.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index 9b1c013..e2086f1 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -107,6 +107,8 @@ static gc::CollectorType ParseCollectorType(const std::string& option) { return gc::kCollectorTypeSS; } else if (option == "GSS") { return gc::kCollectorTypeGSS; + } else if (option == "CC") { + return gc::kCollectorTypeCC; } else { return gc::kCollectorTypeNone; } |