aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-04-17 23:20:10 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-04-17 23:20:10 +0000
commited557b55eee84ef726e4b792dfacedf098fb63c7 (patch)
tree500e058ed754c8284c97e1f3e0f987db5686e051 /llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
parentea8df61d4d6d5680b9ed52080d8021ea5b33e88d (diff)
downloadllvm-ed557b55eee84ef726e4b792dfacedf098fb63c7.zip
llvm-ed557b55eee84ef726e4b792dfacedf098fb63c7.tar.gz
llvm-ed557b55eee84ef726e4b792dfacedf098fb63c7.tar.bz2
DebugInfo: Remove DIDescriptor from the DebugInfo API
Stop using `DIDescriptor` and its subclasses in the `DebugInfoFinder` API, as well as the rest of the API hanging around in `DebugInfo.h`. llvm-svn: 235240
Diffstat (limited to 'llvm/lib/Transforms/IPO/ArgumentPromotion.cpp')
-rw-r--r--llvm/lib/Transforms/IPO/ArgumentPromotion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
index 56975ea..917a163 100644
--- a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
+++ b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
@@ -89,7 +89,7 @@ namespace {
bool doInitialization(CallGraph &CG) override;
/// The maximum number of elements to expand, or 0 for unlimited.
unsigned maxElements;
- DenseMap<const Function *, DISubprogram> FunctionDIs;
+ DenseMap<const Function *, MDSubprogram *> FunctionDIs;
};
}