[llvm] r258369 - Remove redundant argument.
Rafael Espindola via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 20 16:00:54 PST 2016
Author: rafael
Date: Wed Jan 20 18:00:53 2016
New Revision: 258369
URL: http://llvm.org/viewvc/llvm-project?rev=258369&view=rev
Log:
Remove redundant argument.
It is already a member variable.
Modified:
llvm/trunk/lib/Linker/IRMover.cpp
Modified: llvm/trunk/lib/Linker/IRMover.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Linker/IRMover.cpp?rev=258369&r1=258368&r2=258369&view=diff
==============================================================================
--- llvm/trunk/lib/Linker/IRMover.cpp (original)
+++ llvm/trunk/lib/Linker/IRMover.cpp Wed Jan 20 18:00:53 2016
@@ -499,7 +499,7 @@ class IRLinker {
/// from the source module that we don't need to link into the dest module,
/// because the functions were not imported directly or via an inlined body
/// in an imported function.
- void findNeededSubprograms(ValueToValueMapTy &ValueMap);
+ void findNeededSubprograms();
/// The value mapper leaves nulls in the list of subprograms for any
/// in the UnneededSubprograms map. Strip those out after metadata linking.
@@ -1195,7 +1195,7 @@ bool IRLinker::linkGlobalValueBody(Globa
return false;
}
-void IRLinker::findNeededSubprograms(ValueToValueMapTy &ValueMap) {
+void IRLinker::findNeededSubprograms() {
// Track unneeded nodes to make it simpler to handle the case
// where we are checking if an already-mapped SP is needed.
NamedMDNode *CompileUnits = SrcM.getNamedMetadata("llvm.dbg.cu");
@@ -1270,7 +1270,7 @@ void IRLinker::stripNullSubprograms() {
/// Insert all of the named MDNodes in Src into the Dest module.
void IRLinker::linkNamedMDNodes() {
- findNeededSubprograms(ValueMap);
+ findNeededSubprograms();
const NamedMDNode *SrcModFlags = SrcM.getModuleFlagsMetadata();
for (const NamedMDNode &NMD : SrcM.named_metadata()) {
// Don't link module flags here. Do them separately.
More information about the llvm-commits
mailing list