diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-31 07:25:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-31 07:25:22 +0000 |
commit | c4ef55119285fa2f966ee6578a58371c3c368774 (patch) | |
tree | a3edc89c9286938dfa98355f98042f82fa2737ff /include/llvm/Value.h | |
parent | 07c26ee87e4060f487867f1e283801bd8ced62d1 (diff) | |
download | external_llvm-c4ef55119285fa2f966ee6578a58371c3c368774.zip external_llvm-c4ef55119285fa2f966ee6578a58371c3c368774.tar.gz external_llvm-c4ef55119285fa2f966ee6578a58371c3c368774.tar.bz2 |
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
Diffstat (limited to 'include/llvm/Value.h')
-rw-r--r-- | include/llvm/Value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 5f2e35f..3600a5c 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. |