mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
Simplify this code and avoid an extra space character in the output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85568 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6a55e62996
commit
0ed1f4264a
@ -1859,8 +1859,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) {
|
||||
// Special case indirectbr instruction to get formatting nice and correct.
|
||||
Out << ' ';
|
||||
writeOperand(Operand, true);
|
||||
Out << ", ";
|
||||
Out << " [";
|
||||
Out << ", [";
|
||||
|
||||
for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
|
||||
if (i != 1)
|
||||
|
Loading…
Reference in New Issue
Block a user