Skip to content
Snippets Groups Projects
Commit 3a8f40ed authored by Ted Kremenek's avatar Ted Kremenek
Browse files

Rename headers: 'clang/GR' 'clang/EntoSA' and

update Makefile.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122493 91177308-0d34-0410-b5e6-96231b3b80d8
parent 9ef6537a
No related branches found
No related tags found
No related merge requests found
Showing
with 15 additions and 15 deletions
...@@ -10,8 +10,8 @@ set( LLVM_USED_LIBS ...@@ -10,8 +10,8 @@ set( LLVM_USED_LIBS
clangCodeGen clangCodeGen
clangParse clangParse
clangSema clangSema
clangGRCheckers clangEntoCheckers
clangGRCore clangEntoCore
clangAnalysis clangAnalysis
clangIndex clangIndex
clangRewrite clangRewrite
......
...@@ -6,8 +6,8 @@ set(LLVM_USED_LIBS ...@@ -6,8 +6,8 @@ set(LLVM_USED_LIBS
clangDriver clangDriver
clangCodeGen clangCodeGen
clangSema clangSema
clangGRCheckers clangEntoCheckers
clangGRCore clangEntoCore
clangIndex clangIndex
clangAnalysis clangAnalysis
clangRewrite clangRewrite
......
...@@ -18,7 +18,7 @@ TOOL_NO_EXPORTS = 1 ...@@ -18,7 +18,7 @@ TOOL_NO_EXPORTS = 1
LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \ LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
selectiondag asmparser selectiondag asmparser
USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \ USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \
clangSema.a clangGRCheckers.a clangGRCore.a clangAnalysis.a clangRewrite.a \ clangSema.a clangEntoCheckers.a clangEntoCore.a clangAnalysis.a clangRewrite.a \
clangAST.a clangParse.a clangLex.a clangBasic.a clangAST.a clangParse.a clangLex.a clangBasic.a
include $(CLANG_LEVEL)/Makefile include $(CLANG_LEVEL)/Makefile
...@@ -7,8 +7,8 @@ set(LLVM_USED_LIBS ...@@ -7,8 +7,8 @@ set(LLVM_USED_LIBS
clangSema clangSema
clangAnalysis clangAnalysis
clangSerialization clangSerialization
clangGRCheckers clangEntoCheckers
clangGRCore clangEntoCore
clangRewrite clangRewrite
clangAST clangAST
clangParse clangParse
......
...@@ -16,7 +16,7 @@ NO_INSTALL = 1 ...@@ -16,7 +16,7 @@ NO_INSTALL = 1
TOOL_NO_EXPORTS = 1 TOOL_NO_EXPORTS = 1
LINK_COMPONENTS := asmparser bitreader mc core LINK_COMPONENTS := asmparser bitreader mc core
USEDLIBS = clangGRCheckers.a clangGRCore.a clangIndex.a clangFrontend.a clangDriver.a \ USEDLIBS = clangEntoCheckers.a clangEntoCore.a clangIndex.a clangFrontend.a clangDriver.a \
clangSema.a clangAnalysis.a clangSerialization.a \ clangSema.a clangAnalysis.a clangSerialization.a \
clangAST.a clangParse.a clangLex.a clangBasic.a clangAST.a clangParse.a clangLex.a clangBasic.a
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#define LLVM_CLANG_GR_BUGREPORTER #define LLVM_CLANG_GR_BUGREPORTER
#include "clang/Basic/SourceLocation.h" #include "clang/Basic/SourceLocation.h"
#include "clang/GR/PathSensitive/GRState.h" #include "clang/EntoSA/PathSensitive/GRState.h"
#include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/ImmutableList.h" #include "llvm/ADT/ImmutableList.h"
#include "llvm/ADT/ImmutableSet.h" #include "llvm/ADT/ImmutableSet.h"
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#ifndef LLVM_CLANG_ANALYSIS_BUGTYPE #ifndef LLVM_CLANG_ANALYSIS_BUGTYPE
#define LLVM_CLANG_ANALYSIS_BUGTYPE #define LLVM_CLANG_ANALYSIS_BUGTYPE
#include "clang/GR/BugReporter/BugReporter.h" #include "clang/EntoSA/BugReporter/BugReporter.h"
#include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/FoldingSet.h"
#include <string> #include <string>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#ifndef LLVM_CLANG_GR_MANAGER_REGISTRY_H #ifndef LLVM_CLANG_GR_MANAGER_REGISTRY_H
#define LLVM_CLANG_GR_MANAGER_REGISTRY_H #define LLVM_CLANG_GR_MANAGER_REGISTRY_H
#include "clang/GR/PathSensitive/GRState.h" #include "clang/EntoSA/PathSensitive/GRState.h"
namespace clang { namespace clang {
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
#define LLVM_CLANG_GR_ANALYSISMANAGER_H #define LLVM_CLANG_GR_ANALYSISMANAGER_H
#include "clang/Analysis/AnalysisContext.h" #include "clang/Analysis/AnalysisContext.h"
#include "clang/GR/BugReporter/BugReporter.h" #include "clang/EntoSA/BugReporter/BugReporter.h"
#include "clang/GR/BugReporter/PathDiagnostic.h" #include "clang/EntoSA/BugReporter/PathDiagnostic.h"
namespace clang { namespace clang {
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#ifndef LLVM_CLANG_GR_BASICVALUEFACTORY_H #ifndef LLVM_CLANG_GR_BASICVALUEFACTORY_H
#define LLVM_CLANG_GR_BASICVALUEFACTORY_H #define LLVM_CLANG_GR_BASICVALUEFACTORY_H
#include "clang/GR/PathSensitive/SVals.h" #include "clang/EntoSA/PathSensitive/SVals.h"
#include "clang/AST/ASTContext.h" #include "clang/AST/ASTContext.h"
#include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/APSInt.h" #include "llvm/ADT/APSInt.h"
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#define LLVM_CLANG_GR_CHECKER #define LLVM_CLANG_GR_CHECKER
#include "clang/Analysis/Support/SaveAndRestore.h" #include "clang/Analysis/Support/SaveAndRestore.h"
#include "clang/GR/PathSensitive/ExprEngine.h" #include "clang/EntoSA/PathSensitive/ExprEngine.h"
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// Checker interface. // Checker interface.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment