Files
revng-revng/include/revng/BasicAnalyses/RemoveNewPCCalls.h
Antonio Frighetto ba49937a69 Introduce RemoveNewPCCallsPass
A simple pass that removes the calls to `newpc` marker.
2021-12-15 18:03:30 +01:00

17 lines
351 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "llvm/IR/PassManager.h"
class RemoveNewPCCallsPass : public llvm::PassInfoMixin<RemoveNewPCCallsPass> {
public:
RemoveNewPCCallsPass() = default;
llvm::PreservedAnalyses
run(llvm::Function &F, llvm::FunctionAnalysisManager &FAM);
};