Files
revng-revng/lib/TargetFunctionOption/TargetFunctionOption.cpp
T
2020-11-09 10:03:33 +01:00

17 lines
531 B
C++

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