diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-08-26 06:02:12 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-08-26 06:02:12 +0000 |
commit | 77c059060f9c8c121d5e8b76957d187223677558 (patch) | |
tree | 2e778dcec6a222d16ed2ce4427afab443cfbeb8f | |
parent | 1cb237fbf9e52e17f1e03b6f80c1114f47f93781 (diff) |
CGValue: Increase width of allowed alignment. We could switch to log2, but we
don't currently need the bits anyway.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112173 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/CGValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGValue.h b/lib/CodeGen/CGValue.h index 4d19a3c865..f57ecd245f 100644 --- a/lib/CodeGen/CGValue.h +++ b/lib/CodeGen/CGValue.h @@ -138,7 +138,7 @@ class LValue { Qualifiers Quals; /// The alignment to use when accessing this lvalue. - unsigned char Alignment; + unsigned short Alignment; // objective-c's ivar bool Ivar:1; |