[dsymutil] Apply clang-format. NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Frederic Riss
2015-06-05 20:27:07 +00:00
parent 527bb619d1
commit 0f58c38ebd
5 changed files with 20 additions and 19 deletions

View File

@@ -47,8 +47,8 @@ void DebugMapObject::print(raw_ostream &OS) const {
for (const auto &Sym : Entries) {
OS << format("\t%016" PRIx64 " => %016" PRIx64 "+0x%x\t%s\n",
uint64_t(Sym.second.ObjectAddress),
uint64_t(Sym.second.BinaryAddress),
uint32_t(Sym.second.Size), Sym.first.data());
uint64_t(Sym.second.BinaryAddress), uint32_t(Sym.second.Size),
Sym.first.data());
}
OS << '\n';
}
@@ -80,7 +80,7 @@ DebugMapObject::lookupObjectAddress(uint64_t Address) const {
void DebugMap::print(raw_ostream &OS) const {
yaml::Output yout(OS, /* Ctxt = */ nullptr, /* WrapColumn = */ 0);
yout << const_cast<DebugMap&>(*this);
yout << const_cast<DebugMap &>(*this);
}
#ifndef NDEBUG