Fix Polly
[polly-mirror.git] / include / polly / CodePreparation.h
blobfb1942b550e888dcce2cacb2ed1e9f0d3e1f2f7a
1 //===- polly/ScopPreparation.h - Code preparation pass ----------*- 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 // Prepare the Function for polyhedral codegeneration.
11 //===----------------------------------------------------------------------===//
13 #ifndef POLLY_CODEPREPARATION_H
14 #define POLLY_CODEPREPARATION_H
16 #include "llvm/IR/PassManager.h"
18 namespace polly {
19 struct CodePreparationPass : public llvm::PassInfoMixin<CodePreparationPass> {
20 llvm::PreservedAnalyses run(llvm::Function &F,
21 llvm::FunctionAnalysisManager &FAM);
23 } // namespace polly
25 #endif /* POLLY_CODEPREPARATION_H */