diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-15 18:30:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-15 18:30:06 +0000 |
commit | 24872c883897540bd0bd83b12c96f20f13ee1203 (patch) | |
tree | e92b27a4cb96299a08426ac32321d7208f144162 /llvm/lib/CodeGen/RegAlloc/RegClass.h | |
parent | f3f1e452eab177f358bbcd433cb2000db1478e1b (diff) | |
download | bcm5719-llvm-24872c883897540bd0bd83b12c96f20f13ee1203.tar.gz bcm5719-llvm-24872c883897540bd0bd83b12c96f20f13ee1203.zip |
Print Debug Code to stderr instead of stdout so that it doesn't mess up the assembly output
llvm-svn: 841
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc/RegClass.h')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/RegClass.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/RegClass.h b/llvm/lib/CodeGen/RegAlloc/RegClass.h index d08ed3a6594..9f5a46902ac 100644 --- a/llvm/lib/CodeGen/RegAlloc/RegClass.h +++ b/llvm/lib/CodeGen/RegAlloc/RegClass.h @@ -101,12 +101,12 @@ class RegClass inline void printIGNodeList() const { - cout << "IG Nodes for Register Class " << RegClassID << ":" << endl; + cerr << "IG Nodes for Register Class " << RegClassID << ":" << endl; IG.printIGNodeList(); } inline void printIG() { - cout << "IG for Register Class " << RegClassID << ":" << endl; + cerr << "IG for Register Class " << RegClassID << ":" << endl; IG.printIG(); } |