Files
revng-revng/include/revng/EarlyFunctionAnalysis/PromoteGlobalToLocalVars.h
Ivan Krysak bc98e0079f Formatting: change PenaltyReturnTypeOnItsOwnLine
The new value is 21.
2023-07-02 13:20:49 +02:00

18 lines
393 B
C++

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