Minor renaming
authorChris Lattner <sabre@nondot.org>
Tue, 29 Oct 2002 20:48:56 +0000 (20:48 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 29 Oct 2002 20:48:56 +0000 (20:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4410 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/InstSelectSimple.cpp
lib/Target/X86/X86ISelSimple.cpp
lib/Target/X86/X86InstrInfo.cpp
lib/Target/X86/X86InstrInfo.def
lib/Target/X86/X86InstrInfo.h

index 7ffbdb028ab21eecc510376dc321b877fcf612d7..083c88befe73b9f9a4878de4b6c02c580a178432 100644 (file)
@@ -36,9 +36,9 @@ namespace {
     }
 
     /// visitBasicBlock - This method is called when we are visiting a new basic
-    /// block.  This simply creates a new MBasicBlock to emit code into and adds
-    /// it to the current MFunction.  Subsequent visit* for instructions will be
-    /// invoked for all instructions in the basic block.
+    /// block.  This simply creates a new MachineBasicBlock to emit code into
+    /// and adds it to the current MachineFunction.  Subsequent visit* for
+    /// instructions will be invoked for all instructions in the basic block.
     ///
     void visitBasicBlock(BasicBlock &LLVM_BB) {
       BB = new MachineBasicBlock();
index 7ffbdb028ab21eecc510376dc321b877fcf612d7..083c88befe73b9f9a4878de4b6c02c580a178432 100644 (file)
@@ -36,9 +36,9 @@ namespace {
     }
 
     /// visitBasicBlock - This method is called when we are visiting a new basic
-    /// block.  This simply creates a new MBasicBlock to emit code into and adds
-    /// it to the current MFunction.  Subsequent visit* for instructions will be
-    /// invoked for all instructions in the basic block.
+    /// block.  This simply creates a new MachineBasicBlock to emit code into
+    /// and adds it to the current MachineFunction.  Subsequent visit* for
+    /// instructions will be invoked for all instructions in the basic block.
     ///
     void visitBasicBlock(BasicBlock &LLVM_BB) {
       BB = new MachineBasicBlock();
index 06abb4dbf7bd6e8f1976965988a05ffeda2f13e9..012453dda2e31c96acd5535450908e8f0d647ffe 100644 (file)
@@ -1,6 +1,6 @@
 //===- X86InstructionInfo.cpp - X86 Instruction Information ---------------===//
 //
-// This file contains the X86 implementation of the MInstructionInfo class.
+// This file contains the X86 implementation of the MachineInstrInfo class.
 //
 //===----------------------------------------------------------------------===//
 
index da04e1fc803305d8eddadbe7e5624b6920060fbf..0fd18f4bc946ef17328eb2d2010c71a4992e3b71 100644 (file)
@@ -17,7 +17,7 @@
 //  #1: Enum name - This ends up being the opcode symbol in the X86 namespace
 //  #2: Opcode name, as used by the gnu assembler
 //  #3: Instruction Flags - This should be a field or'd together that contains
-//      constants from the MInstructionInfo.h file.
+//      constants from the MachineInstrInfo.h file.
 //  #4: Target Specific Flags - Another bitfield containing X86 specific flags
 //      that we are interested in for each instruction
 //
index d9a9de1765da161d40d6eab8cf3026cced7e6b30..c87ed33215cedeaa7c805db26844b66630387b05 100644 (file)
@@ -1,6 +1,6 @@
 //===- X86InstructionInfo.h - X86 Instruction Information ---------*-C++-*-===//
 //
-// This file contains the X86 implementation of the MInstructionInfo class.
+// This file contains the X86 implementation of the MachineInstrInfo class.
 //
 //===----------------------------------------------------------------------===//
 
@@ -15,7 +15,7 @@ class X86InstructionInfo : public MachineInstrInfo {
 public:
   X86InstructionInfo();
 
-  /// getRegisterInfo - MInstructionInfo is a superset of MRegister info.  As
+  /// getRegisterInfo - MachineInstrInfo is a superset of MRegister info.  As
   /// such, whenever a client has an instance of instruction info, it should
   /// always be able to get register info as well (through this method).
   ///