diff options
author | Eric Christopher <echristo@gmail.com> | 2013-06-24 23:20:02 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-06-24 23:20:02 +0000 |
commit | fdfc81f142b3870c757bb9f06e440e843cb3a57f (patch) | |
tree | 797108aa589eb90f3533084f79cabd8e11783844 /lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | afbe0e266cc3bcb6dcb318166f4a2f998cefd9b1 (diff) | |
download | external_llvm-fdfc81f142b3870c757bb9f06e440e843cb3a57f.tar.gz external_llvm-fdfc81f142b3870c757bb9f06e440e843cb3a57f.tar.bz2 external_llvm-fdfc81f142b3870c757bb9f06e440e843cb3a57f.zip |
80-column and tab character fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184792 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 39caa4170b..8034d621b9 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -601,7 +601,8 @@ DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) { if (Children.empty() && Range.first == Range.second) return NULL; ScopeDIE = constructLexicalScopeDIE(TheCU, Scope); - for (ImportedEntityMap::const_iterator i = Range.first; i != Range.second; ++i) + for (ImportedEntityMap::const_iterator i = Range.first; i != Range.second; + ++i) constructImportedEntityDIE(TheCU, i->second, ScopeDIE); } @@ -812,7 +813,8 @@ void DwarfDebug::constructImportedEntityDIE(CompileUnit *TheCU, TheCU->getUniqueID()); TheCU->addUInt(IMDie, dwarf::DW_AT_decl_file, 0, FileID); TheCU->addUInt(IMDie, dwarf::DW_AT_decl_line, 0, Module.getLineNumber()); - TheCU->addDIEEntry(IMDie, dwarf::DW_AT_import, dwarf::DW_FORM_ref4, EntityDie); + TheCU->addDIEEntry(IMDie, dwarf::DW_AT_import, dwarf::DW_FORM_ref4, + EntityDie); StringRef Name = Module.getName(); if (!Name.empty()) TheCU->addString(IMDie, dwarf::DW_AT_name, Name); |