summaryrefslogtreecommitdiff
path: root/include/llvm/DebugInfo.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-26 17:02:36 +0000
committerEric Christopher <echristo@gmail.com>2013-07-26 17:02:36 +0000
commit956e5aa3bd32212c6902a585a367dbf58d685340 (patch)
treebf293f294cbfb3f7c7501ce3bfdf98fc27a33aa3 /include/llvm/DebugInfo.h
parent65985348c5ece4efecce485029b147c45453c4c8 (diff)
downloadllvm-956e5aa3bd32212c6902a585a367dbf58d685340.tar.gz
llvm-956e5aa3bd32212c6902a585a367dbf58d685340.tar.bz2
llvm-956e5aa3bd32212c6902a585a367dbf58d685340.tar.xz
Add a way to get the context of any particular scope.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/DebugInfo.h')
-rw-r--r--include/llvm/DebugInfo.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/DebugInfo.h b/include/llvm/DebugInfo.h
index ae7bf04944..9fb12f8feb 100644
--- a/include/llvm/DebugInfo.h
+++ b/include/llvm/DebugInfo.h
@@ -187,6 +187,9 @@ namespace llvm {
public:
explicit DIScope(const MDNode *N = 0) : DIDescriptor (N) {}
+ /// Gets the parent scope for this scope node or returns a
+ /// default constructed scope.
+ DIScope getContext() const;
StringRef getFilename() const;
StringRef getDirectory() const;
};