diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-30 19:26:38 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-30 19:26:38 +0000 |
commit | 5705a40c7ec62f1a903bf26e1e6a7f91b5b98ba3 (patch) | |
tree | 1fe797cea392d71cc5a8d8e76812bef03be4847f /include/clang | |
parent | 82f5aceed89b85e79373086b7e0e7986e2c59179 (diff) |
Move AnalyzerOptions.h to include/clang/StaticAnalyzer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162928 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Frontend/CompilerInvocation.h | 2 | ||||
-rw-r--r-- | include/clang/StaticAnalyzer/AnalyzerOptions.h (renamed from include/clang/Frontend/AnalyzerOptions.h) | 8 | ||||
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/clang/Frontend/CompilerInvocation.h b/include/clang/Frontend/CompilerInvocation.h index d6fe003da0..b1b5805dfc 100644 --- a/include/clang/Frontend/CompilerInvocation.h +++ b/include/clang/Frontend/CompilerInvocation.h @@ -13,7 +13,7 @@ #include "clang/Basic/LangOptions.h" #include "clang/Basic/TargetOptions.h" #include "clang/Basic/FileSystemOptions.h" -#include "clang/Frontend/AnalyzerOptions.h" +#include "clang/StaticAnalyzer/AnalyzerOptions.h" #include "clang/Frontend/MigratorOptions.h" #include "clang/Frontend/CodeGenOptions.h" #include "clang/Frontend/DependencyOutputOptions.h" diff --git a/include/clang/Frontend/AnalyzerOptions.h b/include/clang/StaticAnalyzer/AnalyzerOptions.h index 052a8706c6..972887edea 100644 --- a/include/clang/Frontend/AnalyzerOptions.h +++ b/include/clang/StaticAnalyzer/AnalyzerOptions.h @@ -7,13 +7,13 @@ // //===----------------------------------------------------------------------===// // -// This header contains the structures necessary for a front-end to specify -// various analyses. +// This header defines various options for the static analyzer that are set +// by the frontend and are consulted throughout the analyzer. // //===----------------------------------------------------------------------===// -#ifndef LLVM_CLANG_FRONTEND_ANALYZEROPTIONS_H -#define LLVM_CLANG_FRONTEND_ANALYZEROPTIONS_H +#ifndef LLVM_CLANG_ANALYZEROPTIONS_H +#define LLVM_CLANG_ANALYZEROPTIONS_H #include <string> #include <vector> diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h b/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h index 24218be99d..ab569a869a 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h @@ -16,7 +16,7 @@ #define LLVM_CLANG_GR_ANALYSISMANAGER_H #include "clang/Analysis/AnalysisContext.h" -#include "clang/Frontend/AnalyzerOptions.h" +#include "clang/StaticAnalyzer/AnalyzerOptions.h" #include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h" #include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h" #include "clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h" |