From 2253a154d73a97c6ec76636249a92e82ebc1b965 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. llvm-svn: 3280 --- llvm/include/llvm/CodeGen/MachineInstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/CodeGen/MachineInstr.h b/llvm/include/llvm/CodeGen/MachineInstr.h index e208c5575ef3..7e22ab3fc244 100644 --- a/llvm/include/llvm/CodeGen/MachineInstr.h +++ b/llvm/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