mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Don't print extra spaces in vector and array constants. This makes
them visually more consistent with vector and array types. llvm-svn: 64267
This commit is contained in:
parent
74401d22c2
commit
8adedd1086
@ -727,7 +727,6 @@ static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
|
||||
} else { // Cannot output in string format...
|
||||
Out << '[';
|
||||
if (CA->getNumOperands()) {
|
||||
Out << ' ';
|
||||
printTypeInt(Out, ETy, TypeTable);
|
||||
Out << ' ';
|
||||
WriteAsOperandInternal(Out, CA->getOperand(0),
|
||||
@ -738,7 +737,6 @@ static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
|
||||
Out << ' ';
|
||||
WriteAsOperandInternal(Out, CA->getOperand(i), TypeTable, Machine);
|
||||
}
|
||||
Out << ' ';
|
||||
}
|
||||
Out << ']';
|
||||
}
|
||||
@ -777,7 +775,7 @@ static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
|
||||
const Type *ETy = CP->getType()->getElementType();
|
||||
assert(CP->getNumOperands() > 0 &&
|
||||
"Number of operands for a PackedConst must be > 0");
|
||||
Out << "< ";
|
||||
Out << '<';
|
||||
printTypeInt(Out, ETy, TypeTable);
|
||||
Out << ' ';
|
||||
WriteAsOperandInternal(Out, CP->getOperand(0), TypeTable, Machine);
|
||||
@ -787,7 +785,7 @@ static void WriteConstantInt(raw_ostream &Out, const Constant *CV,
|
||||
Out << ' ';
|
||||
WriteAsOperandInternal(Out, CP->getOperand(i), TypeTable, Machine);
|
||||
}
|
||||
Out << " >";
|
||||
Out << '>';
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user