Fix Polly
[polly-mirror.git] / include / polly / ForwardOpTree.h
blobd4f879c896860bf03b7267505d85cc40b9242868
1 //===- ForwardOpTree.h ------------------------------------------*- 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 // Move instructions between statements.
11 //===----------------------------------------------------------------------===//
13 #ifndef POLLY_FORWARDOPTREE_H
14 #define POLLY_FORWARDOPTREE_H
16 namespace llvm {
18 class PassRegistry;
20 void initializeForwardOpTreePass(PassRegistry &);
21 } // namespace llvm
23 namespace polly {
25 class ScopPass;
27 ScopPass *createForwardOpTreePass();
28 } // namespace polly
30 #endif // POLLY_FORWARDOPTREE_H