[PATCH] D130823: [GIsel] Add missing space between type and name in GICombinerHelperArg

Kai Nacke via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 2 10:36:24 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd3c4609855e1: [GIsel] Add missing space between type and name in GICombinerHelperArg (authored by Kai).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D130823/new/

https://reviews.llvm.org/D130823

Files:
  llvm/utils/TableGen/GICombinerEmitter.cpp


Index: llvm/utils/TableGen/GICombinerEmitter.cpp
===================================================================
--- llvm/utils/TableGen/GICombinerEmitter.cpp
+++ llvm/utils/TableGen/GICombinerEmitter.cpp
@@ -842,7 +842,7 @@
                                                 Record *Combiner) {
   for (Record *Arg : Combiner->getValueAsListOfDefs("AdditionalArguments"))
     OS << ",\n    " << Arg->getValueAsString("Type")
-       << Arg->getValueAsString("Name");
+       << " " << Arg->getValueAsString("Name");
 }
 
 void GICombinerEmitter::run(raw_ostream &OS) {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D130823.449342.patch
Type: text/x-patch
Size: 573 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220802/5b57bdac/attachment.bin>


More information about the llvm-commits mailing list