diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-05 22:21:56 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-05 22:21:56 +0000 |
commit | fc7e2a8fbb08f0f496ac6cea0721fe72db8ce240 (patch) | |
tree | 98504c68442080e6cc4571b4bd0d88e207290008 /lib/AST/Decl.cpp | |
parent | 07796e1c522921e2b396df36bf9c1f702ffb2fb5 (diff) |
Introduce the virtual method Decl::getPrimaryDecl().
When a Decl subclass can have multiple re-declarations in the same declaration context (like FunctionDecl),
getPrimaryDecl() will return a particular Decl that all of them will point to as the "primary" declaration.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74800 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Decl.cpp')
-rw-r--r-- | lib/AST/Decl.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 3d02150b65..bcbf091a19 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -358,6 +358,14 @@ const Expr *VarDecl::getDefinition(const VarDecl *&Def) const { return Def? Def->getInit() : 0; } +Decl *VarDecl::getPrimaryDecl() const { + const VarDecl *Prim = this; + while (Prim->getPreviousDeclaration()) + Prim = Prim->getPreviousDeclaration(); + + return const_cast<VarDecl *>(Prim); +} + //===----------------------------------------------------------------------===// // FunctionDecl Implementation //===----------------------------------------------------------------------===// @@ -569,6 +577,14 @@ FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) { } } +Decl *FunctionDecl::getPrimaryDecl() const { + const FunctionDecl *Prim = this; + while (Prim->getPreviousDeclaration()) + Prim = Prim->getPreviousDeclaration(); + + return const_cast<FunctionDecl *>(Prim); +} + /// getOverloadedOperator - Which C++ overloaded operator this /// function represents, if any. OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const { |