[llvm-commits] CVS: llvm/include/llvm/Target/TargetMachine.h

Chris Lattner lattner at cs.uiuc.edu
Mon Jan 6 12:31:01 PST 2003


Changes in directory llvm/include/llvm/Target:

TargetMachine.h updated: 1.28 -> 1.29

---
Log message:

Rename MachineInstrInfo to TargetInstrInfo


---
Diffs of the changes:

Index: llvm/include/llvm/Target/TargetMachine.h
diff -u llvm/include/llvm/Target/TargetMachine.h:1.28 llvm/include/llvm/Target/TargetMachine.h:1.29
--- llvm/include/llvm/Target/TargetMachine.h:1.28	Sat Dec 28 21:12:54 2002
+++ llvm/include/llvm/Target/TargetMachine.h	Mon Jan  6 12:30:12 2003
@@ -10,8 +10,8 @@
 #include "llvm/Target/TargetData.h"
 #include "Support/NonCopyable.h"
 
-class MachineInstrInfo;
-class MachineInstrDescriptor;
+class TargetInstrInfo;
+class TargetInstrDescriptor;
 class TargetSchedInfo;
 class TargetRegInfo;
 class TargetFrameInfo;
@@ -56,7 +56,7 @@
   // -- Cache hierarchy information
   // -- Machine-level optimization information (peephole only)
   // 
-  virtual const MachineInstrInfo&       getInstrInfo() const = 0;
+  virtual const TargetInstrInfo&        getInstrInfo() const = 0;
   virtual const TargetSchedInfo&        getSchedInfo() const = 0;
   virtual const TargetRegInfo&          getRegInfo()   const = 0;
   virtual const TargetFrameInfo&        getFrameInfo() const = 0;





More information about the llvm-commits mailing list