clang-format r207010
authorDavid Blaikie <dblaikie@gmail.com>
Wed, 23 Apr 2014 19:44:08 +0000 (19:44 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Wed, 23 Apr 2014 19:44:08 +0000 (19:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207016 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfFile.cpp

index 04b4b94b26288e5f1480f6a5ad1f6916a0a458da..1174d1210725d195392eca50fe54d824a9f2e6e7 100644 (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));