View | Details | Raw Unified | Return to bug 246630 | Differences between
and this patch

Collapse All | Expand All

(-)contrib/llvm-project/llvm/lib/Analysis/BasicAliasAnalysis.cpp (-2 / +3 lines)
Lines 2059-2070 char BasicAAWrapperPass::ID = 0; Link Here
2059
void BasicAAWrapperPass::anchor() {}
2059
void BasicAAWrapperPass::anchor() {}
2060
2060
2061
INITIALIZE_PASS_BEGIN(BasicAAWrapperPass, "basicaa",
2061
INITIALIZE_PASS_BEGIN(BasicAAWrapperPass, "basicaa",
2062
                      "Basic Alias Analysis (stateless AA impl)", false, true)
2062
                      "Basic Alias Analysis (stateless AA impl)", true, true)
2063
INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
2063
INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
2064
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2064
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
2065
INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2065
INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
2066
INITIALIZE_PASS_DEPENDENCY(PhiValuesWrapperPass)
2066
INITIALIZE_PASS_END(BasicAAWrapperPass, "basicaa",
2067
INITIALIZE_PASS_END(BasicAAWrapperPass, "basicaa",
2067
                    "Basic Alias Analysis (stateless AA impl)", false, true)
2068
                    "Basic Alias Analysis (stateless AA impl)", true, true)
2068
2069
2069
FunctionPass *llvm::createBasicAAWrapperPass() {
2070
FunctionPass *llvm::createBasicAAWrapperPass() {
2070
  return new BasicAAWrapperPass();
2071
  return new BasicAAWrapperPass();
(-)lib/clang/include/clang/Config/config.h (-1 / +1 lines)
Lines 82-87 Link Here
82
/* #undef CLANG_ENABLE_STATIC_ANALYZER */
82
/* #undef CLANG_ENABLE_STATIC_ANALYZER */
83
83
84
/* Spawn a new process clang.exe for the CC1 tool invocation, when necessary */
84
/* Spawn a new process clang.exe for the CC1 tool invocation, when necessary */
85
#define CLANG_SPAWN_CC1 1
85
#define CLANG_SPAWN_CC1 0
86
86
87
#endif
87
#endif

Return to bug 246630