diff options
author | Devang Patel <dpatel@apple.com> | 2009-10-07 22:04:08 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-10-07 22:04:08 +0000 |
commit | beab41b874c3f15df848f9953e8e2c99182b1df8 (patch) | |
tree | 8deccb65f879004af4436f9e0e590828ef37fffa /include/llvm/Analysis | |
parent | b07c1716248cebf00b37ed5d89581369b1191a87 (diff) |
Extract subprogram and compile unit information from the debug info attached to an instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83491 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 53c5120de0..d494bf5f22 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -679,7 +679,10 @@ bool getLocationInfo(const Value *V, std::string &DisplayName, /// processType - Process DIType. void processType(DIType DT); - /// processSubprogram - Enumberate DISubprogram. + /// processLexicalBlock - Process DILexicalBlock. + void processLexicalBlock(DILexicalBlock LB); + + /// processSubprogram - Process DISubprogram. void processSubprogram(DISubprogram SP); /// processStopPoint - Process DbgStopPointInst. |