1 //===- PartialInlining.h - Inline parts of functions ------------*- C++ -*-===//
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 performs partial inlining, typically by inlining an if statement
10 // that surrounds the body of the function.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_TRANSFORMS_IPO_PARTIALINLINING_H
15 #define LLVM_TRANSFORMS_IPO_PARTIALINLINING_H
16 
17 #include "llvm/IR/PassManager.h"
18 
19 namespace llvm {
20 
21 class Module;
22 
23 /// Pass to remove unused function declarations.
24 class PartialInlinerPass : public PassInfoMixin<PartialInlinerPass> {
25 public:
26   PreservedAnalyses run(Module &M, ModuleAnalysisManager &);
27 };
28 
29 } // end namespace llvm
30 
31 #endif // LLVM_TRANSFORMS_IPO_PARTIALINLINING_H
32