blob: 326465f2bbeb60829334e7aaf6ced5413b0d526f [file] [log] [blame]
//===- polly/ScopPreparation.h - Code preparation pass ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Prepare the Function for polyhedral codegeneration.
//
//===----------------------------------------------------------------------===//
#ifndef POLLY_CODEPREPARATION_H
#define POLLY_CODEPREPARATION_H
#include "llvm/IR/PassManager.h"
namespace polly {
struct CodePreparationPass : public llvm::PassInfoMixin<CodePreparationPass> {
llvm::PreservedAnalyses run(llvm::Function &F,
llvm::FunctionAnalysisManager &FAM);
};
} // namespace polly
#endif /* POLLY_CODEPREPARATION_H */