mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
16 lines
503 B
C++
16 lines
503 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.
|
|
//
|
|
|
|
#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"));
|