* Added capability to print out an interval

llvm-svn: 48
This commit is contained in:
Chris Lattner 2001-06-21 05:25:09 +00:00
parent d893c3300a
commit 570f10ad47

View File

@ -88,4 +88,15 @@ inline ostream &operator<<(ostream &o, const Value *I) {
return o;
}
// This library also provides support for printing out Interval's.
namespace cfg {
class Interval;
void WriteToOutput(const Interval *I, ostream &o);
inline ostream &operator <<(ostream &o, const Interval *I) {
WriteToOutput(I, o);
return o;
}
}
#endif