diff options
author | Devang Patel <dpatel@apple.com> | 2011-07-19 22:31:15 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-07-19 22:31:15 +0000 |
commit | c8fcfc9cd9c0940e8afdaba8b815f8f489b457ba (patch) | |
tree | 15388a01e5f814adf55d45af3d3fc596f87d361b /include | |
parent | 80d01dd3d19a84621324ac444c6749602df7a513 (diff) | |
download | external_llvm-c8fcfc9cd9c0940e8afdaba8b815f8f489b457ba.zip external_llvm-c8fcfc9cd9c0940e8afdaba8b815f8f489b457ba.tar.gz external_llvm-c8fcfc9cd9c0940e8afdaba8b815f8f489b457ba.tar.bz2 |
Distinguish between two copies of one inlined variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 77b95db..152d11e 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -725,6 +725,9 @@ namespace llvm { DIVariable createInlinedVariable(MDNode *DV, MDNode *InlinedScope, LLVMContext &VMContext); + /// cleanseInlinedVariable - Remove inlined scope from the variable. + DIVariable cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext); + class DebugInfoFinder { public: /// processModule - Process entire module and collect debug info |