Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:37:10

0001 //===-- AnalyzerHelpFlags.h - Query functions for --help flags --*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
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 } // namespace llvm
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 } // namespace ento
0028 } // namespace clang
0029 
0030 #endif