diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-10-05 05:59:29 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-10-05 05:59:29 +0000 |
commit | 149f6eaed9818057b83d8f0b17bb5e8764a13143 (patch) | |
tree | b0b1a0063de2bc0dfc3db17266a1d477be54c844 /llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp | |
parent | efe40389c0e82cf173f88979c56420dfeba6b8ed (diff) | |
download | bcm5719-llvm-149f6eaed9818057b83d8f0b17bb5e8764a13143.tar.gz bcm5719-llvm-149f6eaed9818057b83d8f0b17bb5e8764a13143.zip |
Re-commit "Use StringRef in Support/Darf APIs (NFC)"
This reverts commit r283285 and re-commit r283275 with
a fix for format("%s", Str); where Str is a StringRef.
llvm-svn: 283298
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp index 63d22d84121..1635808e002 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp @@ -42,8 +42,8 @@ void DWARFDebugLine::Prologue::dump(raw_ostream &OS) const { << format(" opcode_base: %u\n", OpcodeBase); for (uint32_t i = 0; i < StandardOpcodeLengths.size(); ++i) - OS << format("standard_opcode_lengths[%s] = %u\n", LNStandardString(i + 1), - StandardOpcodeLengths[i]); + OS << format("standard_opcode_lengths[%s] = %u\n", + LNStandardString(i + 1).data(), StandardOpcodeLengths[i]); if (!IncludeDirectories.empty()) for (uint32_t i = 0; i < IncludeDirectories.size(); ++i) |