mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
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:
parent
f2f5b3950e
commit
cd0b3a90aa
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user