1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Simplify some printing code by combining new lines onto previous strings. Don't work so hard not to print a comma on the last entry of an array.

llvm-svn: 234464
This commit is contained in:
Craig Topper 2015-04-09 04:08:46 +00:00
parent ea22f9e938
commit a5a636a212

View File

@ -633,7 +633,7 @@ void DisassemblerTables::emitInstructionInfo(raw_ostream &o,
i++;
for (unsigned index = 0; index < NumInstructions; ++index) {
o.indent(i * 2) << "{ /* " << index << " */" << "\n";
o.indent(i * 2) << "{ /* " << index << " */\n";
i++;
OperandListTy OperandList;
@ -647,16 +647,10 @@ void DisassemblerTables::emitInstructionInfo(raw_ostream &o,
}
o.indent(i * 2) << (OperandSets[OperandList] - 1) << ",\n";
o.indent(i * 2) << "/* " << InstructionSpecifiers[index].name << " */";
o << "\n";
o.indent(i * 2) << "/* " << InstructionSpecifiers[index].name << " */\n";
i--;
o.indent(i * 2) << "}";
if (index + 1 < NumInstructions)
o << ",";
o << "\n";
o.indent(i * 2) << "},\n";
}
i--;