[llvm-commits] CVS: llvm/lib/Target/X86/InstSelectSimple.cpp X86InstructionInfo.cpp X86InstructionInfo.def X86InstructionInfo.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 29 14:50:01 PST 2002
Changes in directory llvm/lib/Target/X86:
InstSelectSimple.cpp updated: 1.4 -> 1.5
X86InstructionInfo.cpp updated: 1.2 -> 1.3
X86InstructionInfo.def updated: 1.3 -> 1.4
X86InstructionInfo.h updated: 1.3 -> 1.4
---
Log message:
Minor renaming
---
Diffs of the changes:
Index: llvm/lib/Target/X86/InstSelectSimple.cpp
diff -u llvm/lib/Target/X86/InstSelectSimple.cpp:1.4 llvm/lib/Target/X86/InstSelectSimple.cpp:1.5
--- llvm/lib/Target/X86/InstSelectSimple.cpp:1.4 Tue Oct 29 11:43:55 2002
+++ llvm/lib/Target/X86/InstSelectSimple.cpp Tue Oct 29 14:48:56 2002
@@ -36,9 +36,9 @@
}
/// 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: llvm/lib/Target/X86/X86InstructionInfo.cpp
diff -u llvm/lib/Target/X86/X86InstructionInfo.cpp:1.2 llvm/lib/Target/X86/X86InstructionInfo.cpp:1.3
--- llvm/lib/Target/X86/X86InstructionInfo.cpp:1.2 Tue Oct 29 11:43:19 2002
+++ llvm/lib/Target/X86/X86InstructionInfo.cpp Tue Oct 29 14:48:56 2002
@@ -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: llvm/lib/Target/X86/X86InstructionInfo.def
diff -u llvm/lib/Target/X86/X86InstructionInfo.def:1.3 llvm/lib/Target/X86/X86InstructionInfo.def:1.4
--- llvm/lib/Target/X86/X86InstructionInfo.def:1.3 Tue Oct 29 11:42:40 2002
+++ llvm/lib/Target/X86/X86InstructionInfo.def Tue Oct 29 14:48:56 2002
@@ -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: llvm/lib/Target/X86/X86InstructionInfo.h
diff -u llvm/lib/Target/X86/X86InstructionInfo.h:1.3 llvm/lib/Target/X86/X86InstructionInfo.h:1.4
--- llvm/lib/Target/X86/X86InstructionInfo.h:1.3 Tue Oct 29 11:42:56 2002
+++ llvm/lib/Target/X86/X86InstructionInfo.h Tue Oct 29 14:48:56 2002
@@ -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 @@
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).
///
More information about the llvm-commits
mailing list