summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2014-04-24 01:25:10 +0000
committerDavid Blaikie <dblaikie@gmail.com>2014-04-24 01:25:10 +0000
commitc118614379930598cb4ecfb80bfbb662f1588f64 (patch)
tree8a0c931598ff26cc314129d46873735dd43e472b /lib/CodeGen
parenta0d6bcc1839f7a0a62c9f3a4b62149ec90b82c23 (diff)
downloadllvm-c118614379930598cb4ecfb80bfbb662f1588f64.tar.gz
llvm-c118614379930598cb4ecfb80bfbb662f1588f64.tar.bz2
llvm-c118614379930598cb4ecfb80bfbb662f1588f64.tar.xz
Remove unused parameter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207061 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.cpp7
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.h2
2 files changed, 4 insertions, 5 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index 531c44cde4..bc155f4f03 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -271,8 +271,7 @@ static bool SectionSort(const MCSection *A, const MCSection *B) {
// TODO: Determine whether or not we should add names for programs
// that do not have a DW_AT_name or DW_AT_linkage_name field - this
// is only slightly different than the lookup of non-standard ObjC names.
-void DwarfDebug::addSubprogramNames(DwarfUnit &TheU, DISubprogram SP,
- DIE *Die) {
+void DwarfDebug::addSubprogramNames(DISubprogram SP, DIE *Die) {
if (!SP.isDefinition())
return;
addAccelName(SP.getName(), Die);
@@ -359,7 +358,7 @@ DIE *DwarfDebug::updateSubprogramScopeDIE(DwarfCompileUnit &SPCU,
// Add name to the name table, we do this here because we're guaranteed
// to have concrete versions of our DW_TAG_subprogram nodes.
- addSubprogramNames(SPCU, SP, SPDie);
+ addSubprogramNames(SP, SPDie);
return SPDie;
}
@@ -501,7 +500,7 @@ DIE *DwarfDebug::constructInlinedScopeDIE(DwarfCompileUnit &TheCU,
// Add name to the name table, we do this here because we're guaranteed
// to have concrete versions of our DW_TAG_inlined_subprogram nodes.
- addSubprogramNames(TheCU, InlinedSP, ScopeDIE);
+ addSubprogramNames(InlinedSP, ScopeDIE);
return ScopeDIE;
}
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h
index 02887b10fd..5e8ef28a87 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h
@@ -640,7 +640,7 @@ public:
/// or another context nested inside a subprogram.
bool isSubprogramContext(const MDNode *Context);
- void addSubprogramNames(DwarfUnit &TheU, DISubprogram SP, DIE *Die);
+ void addSubprogramNames(DISubprogram SP, DIE *Die);
AddressPool &getAddressPool() { return AddrPool; }