forked from OSchip/llvm-project
Do not add an extra vtable to EVERY machineinstr created.
llvm-svn: 3280
This commit is contained in:
parent
a09b01b2c1
commit
2253a154d7
|
@ -267,7 +267,7 @@ MachineOperand::InitializeReg(int _regNum, bool isCCReg)
|
|||
//---------------------------------------------------------------------------
|
||||
|
||||
class MachineInstr : public Annotable, // Values are annotable
|
||||
public NonCopyableV { // Disable copy operations
|
||||
public NonCopyable { // Disable copy operations
|
||||
MachineOpCode opCode; // the opcode
|
||||
OpCodeMask opCodeMask; // extra bits for variants of an opcode
|
||||
vector<MachineOperand> operands; // the operands
|
||||
|
|
Loading…
Reference in New Issue