forked from OSchip/llvm-project
Moved "DataflowSolver.h" to the "include/" subtree. Adjusted client
code that uses the solver to reflect the new location. Created "FlowSensitive" subdirectory in include/clang/Analysis to hold header files relating to flow-sensitive analyses. Moved "DataflowValues.h" into this subdirectory. llvm-svn: 42320
This commit is contained in:
parent
e2017c1d1d
commit
39fc60f280
|
@ -17,7 +17,7 @@
|
|||
#include "clang/AST/Expr.h"
|
||||
#include "clang/AST/CFG.h"
|
||||
#include "clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h"
|
||||
#include "DataflowSolver.h"
|
||||
#include "clang/Analysis/FlowSensitive/DataflowSolver.h"
|
||||
#include "clang/Lex/IdentifierTable.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "clang/Analysis/LocalCheckers.h"
|
||||
#include "clang/Basic/Diagnostic.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "DataflowSolver.h"
|
||||
#include "clang/Analysis/FlowSensitive/DataflowSolver.h"
|
||||
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#define LLVM_CLANG_LIVEVARIABLES_H
|
||||
|
||||
#include "clang/AST/Decl.h"
|
||||
#include "clang/Analysis/DataflowValues.h"
|
||||
#include "clang/Analysis/FlowSensitive/DataflowValues.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#define LLVM_CLANG_UNITVALS_H
|
||||
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "clang/Analysis/DataflowValues.h"
|
||||
#include "clang/Analysis/FlowSensitive/DataflowValues.h"
|
||||
|
||||
namespace clang {
|
||||
|
||||
|
|
Loading…
Reference in New Issue