From c4ef55119285fa2f966ee6578a58371c3c368774 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 31 Mar 2009 07:25:22 +0000 Subject: [PATCH] shrink subclassid, liberating some bits for future (ab)use. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68087 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 5f2e35f0c5b..3600a5cef31 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -53,7 +53,7 @@ class AssemblyAnnotationWriter; /// using this Value. /// @brief LLVM Value Representation class Value { - const unsigned short SubclassID; // Subclass identifier (for isa/dyn_cast) + const unsigned char SubclassID; // Subclass identifier (for isa/dyn_cast) protected: /// SubclassData - This member is defined by this class, but is not used for /// anything. Subclasses can use it to hold whatever state they find useful.