@@ -556,6 +556,7 @@ static void InitializeCPlusPlusFeatureTestMacros(const LangOptions &LangOpts,
556
556
static void InitializePredefinedMacros (const TargetInfo &TI,
557
557
const LangOptions &LangOpts,
558
558
const FrontendOptions &FEOpts,
559
+ const PreprocessorOptions &PPOpts,
559
560
MacroBuilder &Builder) {
560
561
// Compiler version introspection macros.
561
562
Builder.defineMacro (" __llvm__" ); // LLVM Backend
@@ -988,8 +989,7 @@ static void InitializePredefinedMacros(const TargetInfo &TI,
988
989
else if (LangOpts.getStackProtector () == LangOptions::SSPReq)
989
990
Builder.defineMacro (" __SSP_ALL__" , " 3" );
990
991
991
- // Define a macro that exists only when using the static analyzer.
992
- if (FEOpts.ProgramAction == frontend::RunAnalysis)
992
+ if (PPOpts.SetUpStaticAnalyzer )
993
993
Builder.defineMacro (" __clang_analyzer__" );
994
994
995
995
if (LangOpts.FastRelaxedMath )
@@ -1113,9 +1113,10 @@ void clang::InitializePreprocessor(
1113
1113
// macros. This is not the right way to handle this.
1114
1114
if ((LangOpts.CUDA || LangOpts.OpenMPIsDevice ) && PP.getAuxTargetInfo ())
1115
1115
InitializePredefinedMacros (*PP.getAuxTargetInfo (), LangOpts, FEOpts,
1116
- Builder);
1116
+ PP. getPreprocessorOpts (), Builder);
1117
1117
1118
- InitializePredefinedMacros (PP.getTargetInfo (), LangOpts, FEOpts, Builder);
1118
+ InitializePredefinedMacros (PP.getTargetInfo (), LangOpts, FEOpts,
1119
+ PP.getPreprocessorOpts (), Builder);
1119
1120
1120
1121
// Install definitions to make Objective-C++ ARC work well with various
1121
1122
// C++ Standard Library implementations.
0 commit comments