<p dir="ltr"><br>
On Mar 2, 2015 7:29 AM, "Benjamin Kramer" <<a href="mailto:benny.kra@googlemail.com">benny.kra@googlemail.com</a>> wrote:<br>
><br>
> Author: d0k<br>
> Date: Mon Mar  2 09:24:41 2015<br>
> New Revision: 230966<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=230966&view=rev">http://llvm.org/viewvc/llvm-project?rev=230966&view=rev</a><br>
> Log:<br>
> AsmWriter: Only print one space after the load type<br>
><br>
> Before: %x = load i32,  i32* %i<br>
> After:  %x = load i32, i32* %i</p>
<p dir="ltr">Thanks!</p>
<p dir="ltr">><br>
> Purely cosmetic, so no new test case.<br>
><br>
> Modified:<br>
>     llvm/trunk/lib/IR/AsmWriter.cpp<br>
><br>
> Modified: llvm/trunk/lib/IR/AsmWriter.cpp<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/AsmWriter.cpp?rev=230966&r1=230965&r2=230966&view=diff">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/AsmWriter.cpp?rev=230966&r1=230965&r2=230966&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/lib/IR/AsmWriter.cpp (original)<br>
> +++ llvm/trunk/lib/IR/AsmWriter.cpp Mon Mar  2 09:24:41 2015<br>
> @@ -2906,7 +2906,7 @@ void AssemblyWriter::printInstruction(co<br>
>      } else if (const auto *LI = dyn_cast<LoadInst>(&I)) {<br>
>        Out << ' ';<br>
>        TypePrinter.print(LI->getType(), Out);<br>
> -      Out << ", ";<br>
> +      Out << ',';<br>
>      }<br>
><br>
>      // PrintAllTypes - Instructions who have operands of all the same type<br>
><br>
><br>
> _______________________________________________<br>
> llvm-commits mailing list<br>
> <a href="mailto:llvm-commits@cs.uiuc.edu">llvm-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</p>