1 //===- Mem2Reg.h - The -mem2reg pass, a wrapper around the Utils lib ------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This pass is a simple pass wrapper around the PromoteMemToReg function call
10 // exposed by the Utils library.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TRANSFORMS_UTILS_MEM2REG_H
15 #define LLVM_TRANSFORMS_UTILS_MEM2REG_H
17 #include "llvm/IR/PassManager.h"
23 class PromotePass
: public PassInfoMixin
<PromotePass
> {
25 PreservedAnalyses
run(Function
&F
, FunctionAnalysisManager
&AM
);
28 } // end namespace llvm
30 #endif // LLVM_TRANSFORMS_UTILS_MEM2REG_H