From: Chris Lattner Date: Fri, 9 Aug 2002 21:49:21 +0000 (+0000) Subject: Do not add an extra vtable to EVERY machineinstr created. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cc367a3ea0d593aa1f70305316d3290dcf4bda02;p=oota-llvm.git 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 --- diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index e208c5575ef..7e22ab3fc24 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 operands; // the operands