Skip to content

Commit

Permalink
Switch from string to char insertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulwalker-arm committed Oct 31, 2024
1 parent bf02cbf commit 22f8615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/IR/AsmWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1700,9 +1700,9 @@ static void WriteConstantInternal(raw_ostream &Out, const Constant *CV,
if (isa<ConstantInt>(SplatVal) || isa<ConstantFP>(SplatVal)) {
Out << "splat (";
WriterCtx.TypePrinter->print(ETy, Out);
Out << " ";
Out << ' ';
WriteAsOperandInternal(Out, SplatVal, WriterCtx);
Out << ")";
Out << ')';
return;
}
}
Expand Down

0 comments on commit 22f8615

Please sign in to comment.