1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

A little bit nicer formatting.

llvm-svn: 73998
This commit is contained in:
Mikhail Glushenkov 2009-06-23 20:45:31 +00:00
parent 4e4656fb6a
commit b246a5511d

View File

@ -1681,7 +1681,7 @@ void EmitOptionDefinitions (const OptionDescriptions& descs,
continue;
}
O << "(\"" << val.Name << '\"';
O << "(\"" << val.Name << "\"\n";
if (val.Type == OptionType::Prefix || val.Type == OptionType::PrefixList)
O << ", cl::Prefix";
@ -1712,7 +1712,7 @@ void EmitOptionDefinitions (const OptionDescriptions& descs,
if (!val.Help.empty())
O << ", cl::desc(\"" << val.Help << "\")";
O << ");\n";
O << ");\n\n";
}
// Emit the aliases (they should go after all the 'proper' options).