No need to use utostr when putting integers into a raw_ostream. NFC

llvm-svn: 259310
This commit is contained in:
Craig Topper 2016-01-31 00:20:26 +00:00
parent fdfdfbe3da
commit 054b391cf4
1 changed files with 5 additions and 5 deletions

View File

@ -1195,12 +1195,12 @@ void Intrinsic::emitReverseVariable(Variable &Dest, Variable &Src) {
emitNewLine();
for (unsigned K = 0; K < Dest.getType().getNumVectors(); ++K) {
OS << " " << Dest.getName() << ".val[" << utostr(K) << "] = "
OS << " " << Dest.getName() << ".val[" << K << "] = "
<< "__builtin_shufflevector("
<< Src.getName() << ".val[" << utostr(K) << "], "
<< Src.getName() << ".val[" << utostr(K) << "]";
<< Src.getName() << ".val[" << K << "], "
<< Src.getName() << ".val[" << K << "]";
for (int J = Dest.getType().getNumElements() - 1; J >= 0; --J)
OS << ", " << utostr(J);
OS << ", " << J;
OS << ");";
emitNewLine();
}
@ -1208,7 +1208,7 @@ void Intrinsic::emitReverseVariable(Variable &Dest, Variable &Src) {
OS << " " << Dest.getName()
<< " = __builtin_shufflevector(" << Src.getName() << ", " << Src.getName();
for (int J = Dest.getType().getNumElements() - 1; J >= 0; --J)
OS << ", " << utostr(J);
OS << ", " << J;
OS << ");";
emitNewLine();
}