As reported in https://github.com/llvm/llvm-project/issues/63225, we
need to make sure we can use the `&operator<<` on instances of the
`ResourceSegments` class for builds that set `NDEBUG`.
Reviewed By: sylvestre.ledru
Differential Revision: https://reviews.llvm.org/D152817
const ResourceSegments &c2) {
return c1._Intervals == c2._Intervals;
}
-#ifndef NDEBUG
friend llvm::raw_ostream &operator<<(llvm::raw_ostream &os,
const ResourceSegments &Segments) {
os << "{ ";
os << "}\n";
return os;
}
-#endif
};
/// Each Scheduling boundary is associated with ready queues. It tracks the