aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineInstr.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-23 03:57:05 +0000
committerChris Lattner <sabre@nondot.org>2001-07-23 03:57:05 +0000
commitd8fa8e2aa1fe30747bf2860cc9f7f226eda42666 (patch)
tree9cb812593740817a1e8dcf160617249fb4c71436 /include/llvm/CodeGen/MachineInstr.h
parent75279ccc759499704655a581bacb8dafb3c32b71 (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.h2
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;