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 | 2253a154d73a97c6ec76636249a92e82ebc1b965 (patch) | |
| tree | 9639f0a066320b80d9267bdacee1e2704f9a510a | |
| parent | a09b01b2c147fb0b4f8a4473c35376406abe7d23 (diff) | |
| download | bcm5719-llvm-2253a154d73a97c6ec76636249a92e82ebc1b965.tar.gz bcm5719-llvm-2253a154d73a97c6ec76636249a92e82ebc1b965.zip | |
Do not add an extra vtable to EVERY machineinstr created.
llvm-svn: 3280
| -rw-r--r-- | llvm/include/llvm/CodeGen/MachineInstr.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/include/llvm/CodeGen/MachineInstr.h b/llvm/include/llvm/CodeGen/MachineInstr.h index e208c5575ef..7e22ab3fc24 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<MachineOperand> operands;      // the operands | 

