From: Chris Lattner Date: Sun, 27 Jun 2004 18:36:39 +0000 (+0000) Subject: Get rid of Annotable's vtable. If anyone deletes an object through an Annotable*, X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6b5f30f36511d76b306080e09879f993ff9faccd;p=oota-llvm.git Get rid of Annotable's vtable. If anyone deletes an object through an Annotable*, they get what they deserve. This reduces the size of Instruction & Function by 4 bytes each. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14433 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/Support/Annotation.h b/include/Support/Annotation.h index 9bd442a6c96..efca20a3ec0 100644 --- a/include/Support/Annotation.h +++ b/include/Support/Annotation.h @@ -95,7 +95,7 @@ class Annotable { void operator=(const Annotable &); // Do not implement public: Annotable() : AnnotationList(0) {} - virtual ~Annotable(); // Virtual because it's designed to be subclassed... + ~Annotable(); // getAnnotation - Search the list for annotations of the specified ID. The // pointer returned is either null (if no annotations of the specified ID diff --git a/include/llvm/Support/Annotation.h b/include/llvm/Support/Annotation.h index 9bd442a6c96..efca20a3ec0 100644 --- a/include/llvm/Support/Annotation.h +++ b/include/llvm/Support/Annotation.h @@ -95,7 +95,7 @@ class Annotable { void operator=(const Annotable &); // Do not implement public: Annotable() : AnnotationList(0) {} - virtual ~Annotable(); // Virtual because it's designed to be subclassed... + ~Annotable(); // getAnnotation - Search the list for annotations of the specified ID. The // pointer returned is either null (if no annotations of the specified ID