@@ -201,15 +201,13 @@ static cl::list<std::string>
201201static cl::opt<LTO::LTOKind> UnifiedLTOMode (
202202 " unified-lto" , cl::Optional,
203203 cl::desc (" Set LTO mode with the following options:" ),
204- cl::values(
205- clEnumValN (LTO::LTOK_UnifiedThin, " thin" ,
206- " ThinLTO with Unified LTO enabled" ),
207- clEnumValN(LTO::LTOK_UnifiedRegular, " full" ,
208- " Regular LTO with Unified LTO enabled" ),
209- clEnumValN(LTO::LTOK_Default, " default" ,
210- " Any LTO mode without Unified LTO. The default mode" )
211- ),
212- cl::value_desc(" mode" ), cl::init(LTO::LTOK_Default));
204+ cl::values(clEnumValN(LTO::LTOK_UnifiedThin, " thin" ,
205+ " ThinLTO with Unified LTO enabled" ),
206+ clEnumValN(LTO::LTOK_UnifiedRegular, " full" ,
207+ " Regular LTO with Unified LTO enabled" ),
208+ clEnumValN(LTO::LTOK_Default, " default" ,
209+ " Any LTO mode without Unified LTO" )),
210+ cl::value_desc(" mode" ), cl::init(LTO::LTOK_Default));
213211
214212static cl::opt<bool > EnableFreestanding (
215213 " lto-freestanding" ,
@@ -576,7 +574,8 @@ static int dumpSymtab(int argc, char **argv) {
576574 }
577575
578576 if (TT.isOSBinFormatCOFF () && Sym.isWeak () && Sym.isIndirect ())
579- outs () << " fallback " << Sym.getCOFFWeakExternalFallback () << ' \n ' ;
577+ outs () << " fallback " << Sym.getCOFFWeakExternalFallback ()
578+ << ' \n ' ;
580579
581580 if (!Sym.getSectionName ().empty ())
582581 outs () << " section " << Sym.getSectionName () << " \n " ;
0 commit comments