Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef POLLY_CODEGENCLEANUP_H
  2. #define POLLY_CODEGENCLEANUP_H
  3.  
  4. namespace llvm {
  5. class FunctionPass;
  6. class PassRegistry;
  7. } // namespace llvm
  8.  
  9. namespace polly {
  10. llvm::FunctionPass *createCodegenCleanupPass();
  11. } // namespace polly
  12.  
  13. namespace llvm {
  14. void initializeCodegenCleanupPass(llvm::PassRegistry &);
  15. } // namespace llvm
  16.  
  17. #endif
  18.