diff options
author | Eric Christopher <echristo@gmail.com> | 2013-10-03 17:41:16 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-10-03 17:41:16 +0000 |
commit | 7c9fc90c75a2b7cf18dd725484aba0af55b44b33 (patch) | |
tree | 05abdfcd666346005572ce67e7106d3163585422 /lib | |
parent | 63fac20ec524fdbcc59e94c0950be15ee660b3be (diff) | |
download | external_llvm-7c9fc90c75a2b7cf18dd725484aba0af55b44b33.zip external_llvm-7c9fc90c75a2b7cf18dd725484aba0af55b44b33.tar.gz external_llvm-7c9fc90c75a2b7cf18dd725484aba0af55b44b33.tar.bz2 |
Fix cut and paste typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191914 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index b8fa974..2acbaf7 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -796,7 +796,7 @@ CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) { NewCU->getUniqueID())); else NewCU->addDelta(Die, dwarf::DW_AT_GNU_pubtypes, dwarf::DW_FORM_data4, - Asm->GetTempSymbol("gnu_pubnames", + Asm->GetTempSymbol("gnu_pubtypes", NewCU->getUniqueID()), DwarfGnuPubTypesSectionSym); } @@ -2988,7 +2988,7 @@ CompileUnit *DwarfDebug::constructSkeletonCU(const CompileUnit *CU) { Asm->GetTempSymbol("gnu_pubtypes", NewCU->getUniqueID())); else NewCU->addDelta(Die, dwarf::DW_AT_GNU_pubtypes, dwarf::DW_FORM_data4, - Asm->GetTempSymbol("gnu_pubnames", NewCU->getUniqueID()), + Asm->GetTempSymbol("gnu_pubtypes", NewCU->getUniqueID()), DwarfGnuPubTypesSectionSym); } |