//===-- Options.h -----------------------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_TOOLS_LLVM_PROFGEN_OPTIONS_H #define LLVM_TOOLS_LLVM_PROFGEN_OPTIONS_H #include "llvm/Support/CommandLine.h" namespace llvm { extern cl::OptionCategory ProfGenCategory; extern cl::opt OutputFilename; extern cl::opt ShowDisassemblyOnly; extern cl::opt ShowSourceLocations; extern cl::opt SkipSymbolization; extern cl::opt ShowDetailedWarning; extern cl::opt InferMissingFrames; extern cl::opt EnableCSPreInliner; extern cl::opt UseContextCostForPreInliner; } // end namespace llvm #endif