Polly 19.0.0git
ISLOStream.h
Go to the documentation of this file.
1//===------ IslOstream.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// raw_ostream printers for isl C++ objects.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/Support/raw_ostream.h"
16namespace polly {
17
18#define ADD_OSTREAM_PRINTER(name) \
19 inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, \
20 const name &Obj) { \
21 OS << stringFromIslObj(Obj); \
22 return OS; \
23 }
24
48} // namespace polly
#define ADD_OSTREAM_PRINTER(name)
Definition: ISLOStream.h:18