diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-23 03:57:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-23 03:57:05 +0000 |
commit | d8fa8e2aa1fe30747bf2860cc9f7f226eda42666 (patch) | |
tree | 9cb812593740817a1e8dcf160617249fb4c71436 /include/llvm/CodeGen/MachineInstr.h | |
parent | 75279ccc759499704655a581bacb8dafb3c32b71 (diff) |
Nonpolymorphic class, doesn't need a virtual dtor!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@276 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 3a28a1ee0b..72f299f015 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -187,7 +187,7 @@ public: /*ctor*/ MachineInstr (MachineOpCode _opCode, OpCodeMask _opCodeMask = 0x0); - /*dtor*/ virtual ~MachineInstr (); + /*dtor*/ ~MachineInstr (); const MachineOpCode getOpCode () const; |