Files
revng-revng/include/revng-c/TargetFunctionOption/TargetFunctionOption.h
T
Andrea Gussoni 30bc1d333e Decompile a single function
Add a flag to enable the decompilation of a single function.
In order to have a single flag shared between the `RestructureCFGPass`
and the `CDecompilerPass`, we added a new dedicated decompilation unit
called `TargetFunctionOption`.
2020-01-13 11:55:32 +01:00

14 lines
379 B
C++

#ifndef REVNGC_TARGET_FUNCTION_OPTION_TARGETFUNCTIONOPTION_H
#define REVNGC_TARGET_FUNCTION_OPTION_TARGETFUNCTIONOPTION_H
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
// LLVM includes
#include <llvm/Support/CommandLine.h>
extern llvm::cl::opt<std::string> TargetFunction;
#endif // REVNGC_TARGET_FUNCTION_OPTION_TARGETFUNCTIONOPTION_H