[NFC] Whitespace fix inside OptParserEmitter
authorDaniel Grumberg <dany.grumberg@gmail.com>
Fri, 15 May 2020 18:26:07 +0000 (11:26 -0700)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Fri, 15 May 2020 18:27:13 +0000 (11:27 -0700)
llvm/utils/TableGen/OptParserEmitter.cpp

index bbc7891..4e19c76 100644 (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");