diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-29 21:05:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-29 21:05:24 +0000 |
commit | 27d247978b166a5a224b4f1acfec6088d21c01cb (patch) | |
tree | a8edd9e2d5072db35844e0222e321ca000ec2118 /llvm/lib/Target/X86/X86InstrInfo.cpp | |
parent | 548cd8e37f16fd03c85f153fe9c1cd5b823e6e25 (diff) | |
download | bcm5719-llvm-27d247978b166a5a224b4f1acfec6088d21c01cb.tar.gz bcm5719-llvm-27d247978b166a5a224b4f1acfec6088d21c01cb.zip |
Rename X86InstructionInfo to X86InstrInfo
llvm-svn: 4413
Diffstat (limited to 'llvm/lib/Target/X86/X86InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index 012453dda2e..6d2bf1d4969 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/lib/Target/X86/X86InstrInfo.cpp @@ -1,29 +1,29 @@ -//===- X86InstructionInfo.cpp - X86 Instruction Information ---------------===// +//===- X86InstrInfo.cpp - X86 Instruction Information ---------------===// // // This file contains the X86 implementation of the MachineInstrInfo class. // //===----------------------------------------------------------------------===// -#include "X86InstructionInfo.h" +#include "X86InstrInfo.h" #include "llvm/CodeGen/MachineInstr.h" #include <iostream> -// X86Insts - Turn the InstructionInfo.def file into a bunch of instruction +// X86Insts - Turn the InstrInfo.def file into a bunch of instruction // descriptors // static const MachineInstrDescriptor X86Insts[] = { #define I(ENUM, NAME, FLAGS, TSFLAGS) \ { NAME, -1, -1, 0, false, 0, 0, TSFLAGS, FLAGS }, -#include "X86InstructionInfo.def" +#include "X86InstrInfo.def" }; -X86InstructionInfo::X86InstructionInfo() +X86InstrInfo::X86InstrInfo() : MachineInstrInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0]), 0) { } // print - Print out an x86 instruction in GAS syntax -void X86InstructionInfo::print(const MachineInstr *MI, std::ostream &O) const { +void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O) const { // FIXME: This sucks. O << getName(MI->getOpCode()) << "\n"; } |