1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[NFC] Whitespace fix inside OptParserEmitter

This commit is contained in:
Daniel Grumberg 2020-05-15 11:26:07 -07:00 committed by Duncan P. N. Exon Smith
parent eb3dba6441
commit f9d3b095c9

View File

@ -102,7 +102,7 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) {
OS << ", \"" << R.getValueAsString("Name") << '"';
// The option identifier name.
OS << ", "<< getOptionName(R);
OS << ", " << getOptionName(R);
// The option kind.
OS << ", Group";
@ -149,7 +149,7 @@ void EmitOptParser(RecordKeeper &Records, raw_ostream &OS) {
write_cstring(OS, R.getValueAsString("Name"));
// The option identifier name.
OS << ", "<< getOptionName(R);
OS << ", " << getOptionName(R);
// The option kind.
OS << ", " << R.getValueAsDef("Kind")->getValueAsString("Name");