1 //===- PruneUnprofitable.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 // Mark a SCoP as unfeasible if not deemed profitable to optimize. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef POLLY_PRUNEUNPROFITABLE_H 14 #define POLLY_PRUNEUNPROFITABLE_H 15 16 namespace llvm { 17 18 class Pass; 19 class PassRegistry; 20 21 void initializePruneUnprofitablePass(PassRegistry &); 22 } // namespace llvm 23 24 namespace polly { 25 26 llvm::Pass *createPruneUnprofitablePass(); 27 } // namespace polly 28 29 #endif // POLLY_PRUNEUNPROFITABLE_H 30