mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[DebugInfo] Drop unneeded format() calls (fix -Wformat-security) after 3b7ec64d59748765990ed99716034ab8d5533673
This commit is contained in:
parent
fb5be176f1
commit
a4f74ca229
@ -1048,7 +1048,7 @@ Error DWARFDebugLine::LineTable::parse(
|
||||
uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1];
|
||||
if (OpcodeLength != 0) {
|
||||
if (Verbose)
|
||||
*OS << format(" (operands: ");
|
||||
*OS << " (operands: ";
|
||||
for (uint8_t I = 0; I < OpcodeLength; ++I) {
|
||||
uint64_t Value = TableData.getULEB128(OffsetPtr);
|
||||
if (Verbose) {
|
||||
@ -1058,7 +1058,7 @@ Error DWARFDebugLine::LineTable::parse(
|
||||
}
|
||||
}
|
||||
if (Verbose)
|
||||
*OS << format(")");
|
||||
*OS << ')';
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user