Add support for structured printing

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-30 00:46:48 +00:00
parent dea73839f6
commit fa78fbf446

View File

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