[PATCH] D79989: [NFC] Whitespace fix inside OptParserEmitter

Daniel Grumberg via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 15 03:02:42 PDT 2020


dang created this revision.
dang added reviewers: Bigcheese, dexonsmith.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D79989

Files:
  llvm/utils/TableGen/OptParserEmitter.cpp


Index: llvm/utils/TableGen/OptParserEmitter.cpp
===================================================================
--- llvm/utils/TableGen/OptParserEmitter.cpp
+++ llvm/utils/TableGen/OptParserEmitter.cpp
@@ -102,7 +102,7 @@
     OS << ", \"" << R.getValueAsString("Name") << '"';
 
     // The option identifier name.
-    OS  << ", "<< getOptionName(R);
+    OS << ", " << getOptionName(R);
 
     // The option kind.
     OS << ", Group";
@@ -149,7 +149,7 @@
     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");


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79989.264193.patch
Type: text/x-patch
Size: 724 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200515/54d8dd73/attachment.bin>


More information about the llvm-commits mailing list