mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
19 lines
385 B
C++
19 lines
385 B
C++
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
class RemoveExtractValues : public llvm::FunctionPass {
|
|
public:
|
|
static char ID;
|
|
|
|
public:
|
|
RemoveExtractValues() : llvm::FunctionPass(ID) {}
|
|
|
|
bool runOnFunction(llvm::Function &) override;
|
|
void getAnalysisUsage(llvm::AnalysisUsage &AU) const override;
|
|
};
|