MachineInstrInfo doesn't need a TargetMachine member


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4371 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/llvm/Target/MachineInstrInfo.h b/include/llvm/Target/MachineInstrInfo.h
index cd0a3ed..0a9632b 100644
--- a/include/llvm/Target/MachineInstrInfo.h
+++ b/include/llvm/Target/MachineInstrInfo.h
@@ -81,10 +81,7 @@
 
 
 class MachineInstrInfo {
-public:
-  const TargetMachine& target;
-
-protected:
+private:
   const MachineInstrDescriptor* desc;	// raw array to allow static init'n
   unsigned descSize;		// number of entries in the desc array
   unsigned numRealOpCodes;		// number of non-dummy op codes
@@ -92,8 +89,7 @@
   MachineInstrInfo(const MachineInstrInfo &); // DO NOT IMPLEMENT
   void operator=(const MachineInstrInfo &);   // DO NOT IMPLEMENT
 public:
-  MachineInstrInfo(const TargetMachine& tgt,
-                   const MachineInstrDescriptor *desc, unsigned descSize,
+  MachineInstrInfo(const MachineInstrDescriptor *desc, unsigned descSize,
 		   unsigned numRealOpCodes);
   virtual ~MachineInstrInfo();
   
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index cd0a3ed..0a9632b 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -81,10 +81,7 @@
 
 
 class MachineInstrInfo {
-public:
-  const TargetMachine& target;
-
-protected:
+private:
   const MachineInstrDescriptor* desc;	// raw array to allow static init'n
   unsigned descSize;		// number of entries in the desc array
   unsigned numRealOpCodes;		// number of non-dummy op codes
@@ -92,8 +89,7 @@
   MachineInstrInfo(const MachineInstrInfo &); // DO NOT IMPLEMENT
   void operator=(const MachineInstrInfo &);   // DO NOT IMPLEMENT
 public:
-  MachineInstrInfo(const TargetMachine& tgt,
-                   const MachineInstrDescriptor *desc, unsigned descSize,
+  MachineInstrInfo(const MachineInstrDescriptor *desc, unsigned descSize,
 		   unsigned numRealOpCodes);
   virtual ~MachineInstrInfo();