1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 10:32:48 +02:00

* 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 67ccf1f072
commit ffd93e3c15

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