Add support for structured printing

llvm-svn: 4432
This commit is contained in:
Chris Lattner 2002-10-30 00:46:48 +00:00
parent b7e661059b
commit 528781d9ff
1 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,7 @@
class Value;
class Function;
class MachineBasicBlock;
class TargetMachine;
typedef int MachineOpCode;
@ -326,6 +327,7 @@ public:
//
// Debugging support
//
void print(std::ostream &OS, const TargetMachine &TM);
void dump() const;
friend std::ostream& operator<<(std::ostream& os, const MachineInstr& minstr);