diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-06 21:35:02 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2009-07-06 21:35:02 +0000 |
commit | 818e15b89facfe0b62c8c22c18fde383a17455eb (patch) | |
tree | 6957e11614b5c66ed86cbfd99df8115133fa95ae /lib | |
parent | ccbcb70ee96cb67ed6c8b4142d050f3a6764edd7 (diff) |
Move the 'ResolveLocationInAST' function from the Frontend library to the Index library.
Also, cut down its comments; more comments will be added to ASTLocation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74860 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Index/ResolveLocation.cpp (renamed from lib/Frontend/ResolveLocation.cpp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Frontend/ResolveLocation.cpp b/lib/Index/ResolveLocation.cpp index 9fbae30a48..b9df702904 100644 --- a/lib/Frontend/ResolveLocation.cpp +++ b/lib/Index/ResolveLocation.cpp @@ -8,11 +8,11 @@ //===----------------------------------------------------------------------===// // // This defines the ResolveLocationInAST function, which resolves a -// source location into a <Decl *, Stmt *> pair. +// source location into a ASTLocation. // //===----------------------------------------------------------------------===// -#include "clang/Frontend/Utils.h" +#include "clang/Index/Utils.h" #include "clang/Index/ASTLocation.h" #include "clang/AST/DeclVisitor.h" #include "clang/AST/StmtVisitor.h" @@ -322,7 +322,7 @@ void LocResolverBase::print(Stmt *Node) { /// \brief Returns the AST node that a source location points to. /// -ASTLocation clang::ResolveLocationInAST(ASTContext &Ctx, SourceLocation Loc) { +ASTLocation idx::ResolveLocationInAST(ASTContext &Ctx, SourceLocation Loc) { if (Loc.isInvalid()) return ASTLocation(); |