[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 29 18:47:05 PST 2002
Changes in directory llvm/include/llvm/CodeGen:
MachineInstr.h updated: 1.81 -> 1.82
---
Log message:
Add support for structured printing
---
Diffs of the changes:
Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.81 llvm/include/llvm/CodeGen/MachineInstr.h:1.82
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.81 Tue Oct 29 17:18:23 2002
+++ llvm/include/llvm/CodeGen/MachineInstr.h Tue Oct 29 18:46:48 2002
@@ -16,6 +16,7 @@
class Value;
class Function;
class MachineBasicBlock;
+class TargetMachine;
typedef int MachineOpCode;
@@ -325,7 +326,8 @@
//
// Debugging support
- //
+ //
+ void print(std::ostream &OS, const TargetMachine &TM);
void dump() const;
friend std::ostream& operator<<(std::ostream& os, const MachineInstr& minstr);
More information about the llvm-commits
mailing list