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. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef POLLY_FORWARDOPTREE_H 14 #define POLLY_FORWARDOPTREE_H 15 16 namespace llvm { 17 18 class PassRegistry; 19 20 void initializeForwardOpTreePass(PassRegistry &); 21 } // namespace llvm 22 23 namespace polly { 24 25 class ScopPass; 26 27 ScopPass *createForwardOpTreePass(); 28 } // namespace polly 29 30 #endif // POLLY_FORWARDOPTREE_H 31