#pragma once // // This file is distributed under the MIT License. See LICENSE.md for details. // #include #include #include "revng/Pipeline/Kind.h" #include "revng/Pipeline/Option.h" namespace revng::pipes { struct ApplyDiffAnalysis { static constexpr auto Name = "Apply"; constexpr static std::tuple Options = { pipeline::Option("diff-path", "") }; std::vector> AcceptedKinds = {}; llvm::Error run(pipeline::Context &Ctx, std::string DiffLocation); }; } // namespace revng::pipes