diff options
author | George Karpenkov <ekarpenkov@apple.com> | 2017-09-06 21:45:03 +0000 |
---|---|---|
committer | George Karpenkov <ekarpenkov@apple.com> | 2017-09-06 21:45:03 +0000 |
commit | 50657f6bd6f4f09b21fd47cd23a7b80a9a6b37d5 (patch) | |
tree | d61b336b2381a2a5f4dc13d3cd896976140f0eff /clang/lib/Analysis/LiveVariables.cpp | |
parent | 7b9cf1c4c3ae4e7de88136e683d3008f0bdb0721 (diff) | |
download | bcm5719-llvm-50657f6bd6f4f09b21fd47cd23a7b80a9a6b37d5.tar.gz bcm5719-llvm-50657f6bd6f4f09b21fd47cd23a7b80a9a6b37d5.zip |
[CSA] [NFC] Move AnalysisContext.h to AnalysisDeclContext.h
The implementation is in AnalysisDeclContext.cpp and the class is called
AnalysisDeclContext.
Making those match up has numerous benefits, including:
- Easier jump from header to/from implementation.
- Easily identify filename from class.
Differential Revision: https://reviews.llvm.org/D37500
llvm-svn: 312671
Diffstat (limited to 'clang/lib/Analysis/LiveVariables.cpp')
-rw-r--r-- | clang/lib/Analysis/LiveVariables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/LiveVariables.cpp b/clang/lib/Analysis/LiveVariables.cpp index cd73a62e691..4752c2b020a 100644 --- a/clang/lib/Analysis/LiveVariables.cpp +++ b/clang/lib/Analysis/LiveVariables.cpp @@ -15,7 +15,7 @@ #include "clang/AST/Stmt.h" #include "clang/AST/StmtVisitor.h" #include "clang/Analysis/Analyses/PostOrderCFGView.h" -#include "clang/Analysis/AnalysisContext.h" +#include "clang/Analysis/AnalysisDeclContext.h" #include "clang/Analysis/CFG.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/PostOrderIterator.h" |