File indexing completed on 2026-05-10 08:37:10
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef LLVM_CLANG_STATICANALYZER_FRONTEND_ANALYZERHELPFLAGS_H
0010 #define LLVM_CLANG_STATICANALYZER_FRONTEND_ANALYZERHELPFLAGS_H
0011
0012 namespace llvm {
0013 class raw_ostream;
0014 }
0015
0016 namespace clang {
0017
0018 class CompilerInstance;
0019
0020 namespace ento {
0021
0022 void printCheckerHelp(llvm::raw_ostream &OS, CompilerInstance &CI);
0023 void printEnabledCheckerList(llvm::raw_ostream &OS, CompilerInstance &CI);
0024 void printAnalyzerConfigList(llvm::raw_ostream &OS);
0025 void printCheckerConfigList(llvm::raw_ostream &OS, CompilerInstance &CI);
0026
0027 }
0028 }
0029
0030 #endif