@@ -76,16 +76,18 @@ cl::opt<std::string> CompDirOverride(
7676 " to *.dwo files." ),
7777 cl::Hidden, cl::init(" " ), cl::cat(BoltCategory));
7878
79- cl::opt<bolt::BinaryContext::ICFLevel> ICF (
80- " icf" , cl::desc(" fold functions with identical code" ),
81- cl::init(bolt::BinaryContext::ICFLevel::None),
82- cl::values(
83- clEnumValN (bolt::BinaryContext::ICFLevel::All, " all" , " enable ICF" ),
84- clEnumValN(bolt::BinaryContext::ICFLevel::All, " " , " enable ICF" ),
85- clEnumValN(bolt::BinaryContext::ICFLevel::None, " none" , " disable ICF" ),
86- clEnumValN(bolt::BinaryContext::ICFLevel::Safe, " safe" ,
87- " enable safe ICF" )),
88- cl::ZeroOrMore, cl::ValueOptional, cl::cat(BoltOptCategory));
79+ cl::opt<bolt::BinaryContext::ICFLevel>
80+ ICF (" icf" , cl::desc(" fold functions with identical code" ),
81+ cl::init(bolt::BinaryContext::ICFLevel::None),
82+ cl::values(clEnumValN(bolt::BinaryContext::ICFLevel::All, " all" ,
83+ " Enable identical code folding" ),
84+ clEnumValN(bolt::BinaryContext::ICFLevel::All, " " ,
85+ " Enable identical code folding" ),
86+ clEnumValN(bolt::BinaryContext::ICFLevel::None, " none" ,
87+ " Disable identical code folding (default)" ),
88+ clEnumValN(bolt::BinaryContext::ICFLevel::Safe, " safe" ,
89+ " Enable safe identical code folding" )),
90+ cl::ZeroOrMore, cl::ValueOptional, cl::cat(BoltOptCategory));
8991} // namespace opts
9092
9193namespace {
0 commit comments