mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
98f5304c54
Also, turn it into a ModulePass.
20 lines
360 B
C++
20 lines
360 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "revng/BasicAnalyses/GeneratedCodeBasicInfo.h"
|
|
|
|
class InlineHelpersPass : public llvm::ModulePass {
|
|
public:
|
|
static char ID;
|
|
|
|
public:
|
|
InlineHelpersPass() : ModulePass(ID) {}
|
|
|
|
bool runOnModule(llvm::Module &M) override;
|
|
};
|