Add DebugValue global function

llvm-svn: 173
This commit is contained in:
Chris Lattner 2001-07-12 23:33:53 +00:00
parent d6c5a769ea
commit 805c1514e4

View file

@ -88,4 +88,8 @@ inline ostream &operator<<(ostream &o, const Value *I) {
return o;
}
inline void DebugValue(const Value *V) {
cerr << V << endl;
}
#endif