DebugInfo: Provide a utility for building a mapping from llvm::Function*s to llvm::DISubprograms

Update DeadArgumentElimintation to use this, with the intent of reusing
the functionality for ArgumentPromotion as well.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212122 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Blaikie
2014-07-01 20:05:26 +00:00
parent 4f5fa35b59
commit f652ec594e
3 changed files with 23 additions and 31 deletions

View File

@@ -934,6 +934,9 @@ private:
/// Specify if TypeIdentifierMap is initialized.
bool TypeMapInitialized;
};
DenseMap<Function *, DISubprogram> makeSubprogramMap(Module &M);
} // end namespace llvm
#endif