Remove getOpCode(). Help doxygenify some comments.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11338 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-02-12 01:34:03 +00:00
parent f2f5b3950e
commit cd0b3a90aa

View File

@ -375,19 +375,13 @@ public:
///
MachineInstr(MachineBasicBlock *MBB, int Opcode, unsigned numOps);
// The opcode.
//
/// Accessors for opcode and associated flags.
///
const int getOpcode() const { return opCode; }
const int getOpCode() const { return opCode; }
unsigned getOpCodeFlags() const { return opCodeFlags; }
// Opcode flags.
//
unsigned getOpCodeFlags() const { return opCodeFlags; }
//
// Access to explicit operands of the instruction
//
/// Access to explicit operands of the instruction.
///
unsigned getNumOperands() const { return operands.size() - numImplicitRefs; }
const MachineOperand& getOperand(unsigned i) const {