clang-format r207010

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie 2014-04-23 19:44:08 +00:00
parent 0e92fe9dce
commit 53008d6713

View File

@ -21,8 +21,7 @@ namespace llvm {
DwarfFile::DwarfFile(AsmPrinter *AP, const char *Pref, BumpPtrAllocator &DA)
: Asm(AP), StringPool(DA), NextStringPoolNumber(0), StringPref(Pref) {}
DwarfFile::~DwarfFile() {
}
DwarfFile::~DwarfFile() {}
MCSymbol *DwarfFile::getStringPoolSym() {
return Asm->GetTempSymbol(StringPref);
@ -192,7 +191,7 @@ void DwarfFile::emitStrings(const MCSection *StrSection,
// Get all of the string pool entries and put them in an array by their ID so
// we can sort them.
SmallVector<std::pair<unsigned, const StrPool::value_type *>, 64 > Entries;
SmallVector<std::pair<unsigned, const StrPool::value_type *>, 64> Entries;
for (const auto &I : StringPool)
Entries.push_back(std::make_pair(I.second.second, &I));