mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
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:
parent
0e92fe9dce
commit
53008d6713
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user