Files
revng-revng/lib/TargetFunctionOption/TargetFunctionOption.cpp
T
Pietro Fezzardi 9f1bbc8b49 Drop deprecated \brief Doxygen directive
\brief is a stupid feature that we should stop using:
https://lists.llvm.org/pipermail/llvm-dev/2015-May/085152.html
2022-03-22 10:48:03 +01:00

18 lines
621 B
C++

/// \file TargetFunction.cpp
/// File which defines an option later used by the `CDecompilerPass` and
/// by the `RestructureCFGPass`
//
// Copyright rev.ng Srls. See LICENSE.md for details.
//
#include "revng-c/TargetFunctionOption/TargetFunctionOption.h"
using namespace llvm;
cl::opt<std::string> TargetFunction("single-decompilation",
cl::desc("Name of the function to "
"decompile"),
cl::value_desc("function name"),
cl::NumOccurrencesFlag::Optional);