diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-09 21:49:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-09 21:49:21 +0000 |
commit | cc367a3ea0d593aa1f70305316d3290dcf4bda02 (patch) | |
tree | 44c649079f68fae1f25e28198f5bcadf54a108dd /include/llvm/CodeGen/MachineInstr.h | |
parent | dc1e020444942b1dc721a84b21f5d634689762a5 (diff) |
Do not add an extra vtable to EVERY machineinstr created.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3280 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineInstr.h')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index e208c5575e..7e22ab3fc2 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -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 |