diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-07-19 16:32:50 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-07-19 16:32:50 +0000 |
commit | f51bb7cef8b0aa25506308c2ec0fcde58e1dc7ed (patch) | |
tree | 7d99d66215f2cfef128cc874115e24861cc96a46 /include/llvm/Analysis | |
parent | 66fc541abef7d391d5632cc8f1c2c0b6d34f11a6 (diff) | |
download | external_llvm-f51bb7cef8b0aa25506308c2ec0fcde58e1dc7ed.zip external_llvm-f51bb7cef8b0aa25506308c2ec0fcde58e1dc7ed.tar.gz external_llvm-f51bb7cef8b0aa25506308c2ec0fcde58e1dc7ed.tar.bz2 |
Revert "Make a provision to encode inline location in a variable. This will enable dwarf writer to easily distinguish between two instances of a inlined variable in one basic block."
This reverts commit 9fec5e346efdf744b151ae6604f912908315fa7a.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135486 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 77b95db..fbee5a6 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -628,9 +628,7 @@ namespace llvm { uint64_t getAddrElement(unsigned Idx) const { if (getVersion() <= llvm::LLVMDebugVersion8) return getUInt64Field(Idx+6); - if (getVersion() == llvm::LLVMDebugVersion9) - return getUInt64Field(Idx+7); - return getUInt64Field(Idx+8); + return getUInt64Field(Idx+7); } /// isBlockByrefVariable - Return true if the variable was declared as @@ -718,13 +716,6 @@ namespace llvm { /// suitable to hold function specific information. NamedMDNode *getFnSpecificMDNode(const Module &M, StringRef Name); - /// createInlinedVariable - Create a new inlined variable based on current - /// variable. - /// @param DV Current Variable. - /// @param InlinedScope Location at current variable is inlined. - DIVariable createInlinedVariable(MDNode *DV, MDNode *InlinedScope, - LLVMContext &VMContext); - class DebugInfoFinder { public: /// processModule - Process entire module and collect debug info |