mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
* Added capability to print out an interval
llvm-svn: 48
This commit is contained in:
parent
67ccf1f072
commit
ffd93e3c15
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user