llvm/clang/lib/StaticAnalyzer/Frontend/AnalyzerHelpFlags.cpp

//===--- CheckerRegistration.cpp - Registration for the Analyzer Checkers -===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// Defines the registration function for the analyzer checkers.
//
//===----------------------------------------------------------------------===//

#include "clang/StaticAnalyzer/Frontend/AnalyzerHelpFlags.h"
#include "clang/Basic/Diagnostic.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendDiagnostic.h"
#include "clang/StaticAnalyzer/Core/AnalyzerOptions.h"
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
#include "clang/StaticAnalyzer/Frontend/CheckerRegistry.h"
#include "clang/StaticAnalyzer/Frontend/FrontendActions.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/raw_ostream.h"
#include <memory>

usingnamespaceclang;
usingnamespaceento;

void ento::printCheckerHelp(raw_ostream &out, CompilerInstance &CI) {}

void ento::printEnabledCheckerList(raw_ostream &out, CompilerInstance &CI) {}

void ento::printCheckerConfigList(raw_ostream &out, CompilerInstance &CI) {}

void ento::printAnalyzerConfigList(raw_ostream &out) {}