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 | d2bc53e92568465991a789b15a4d77db1c4ccd47 (patch) | |
tree | 7ecb73c0699f0536c9786f89ac934eb2288bd57c /clang | |
parent | 66afba7aa476fb5c0dcf513e277d6e133d6b7d30 (diff) | |
download | bcm5719-llvm-d2bc53e92568465991a789b15a4d77db1c4ccd47.tar.gz bcm5719-llvm-d2bc53e92568465991a789b15a4d77db1c4ccd47.zip |
CGValue: Increase width of allowed alignment. We could switch to log2, but we
don't currently need the bits anyway.
llvm-svn: 112173
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/CodeGen/CGValue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGValue.h b/clang/lib/CodeGen/CGValue.h index 4d19a3c865d..f57ecd245f0 100644 --- a/clang/lib/CodeGen/CGValue.h +++ b/clang/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; |