[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / Transforms / Utils / Mem2Reg.h
blob76c1c2c5bffeca1b2a7232fcfb6991c9bd00360d
1 //===- Mem2Reg.h - The -mem2reg pass, a wrapper around the Utils lib ------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
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"
19 namespace llvm {
21 class Function;
23 class PromotePass : public PassInfoMixin<PromotePass> {
24 public:
25 PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
28 } // end namespace llvm
30 #endif // LLVM_TRANSFORMS_UTILS_MEM2REG_H