Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line | 
|---|---|---|---|
| 14 | pmbaty | 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 |