diff options
| -rw-r--r-- | polly/include/polly/Support/GICHelper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/polly/include/polly/Support/GICHelper.h b/polly/include/polly/Support/GICHelper.h index 0896940dec4..f442a609a3b 100644 --- a/polly/include/polly/Support/GICHelper.h +++ b/polly/include/polly/Support/GICHelper.h @@ -65,6 +65,12 @@ inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, } inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, + __isl_keep isl_set *Set) { + OS << polly::stringFromIslObj(Set); + return OS; +} + +inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, __isl_keep isl_pw_aff *Map) { OS << polly::stringFromIslObj(Map); return OS; |

