From cc367a3ea0d593aa1f70305316d3290dcf4bda02 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 9 Aug 2002 21:49:21 +0000 Subject: [PATCH] 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 --- include/llvm/CodeGen/MachineInstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1