[cfe-commits] r112173 - /cfe/trunk/lib/CodeGen/CGValue.h
Daniel Dunbar
daniel at zuster.org
Wed Aug 25 23:02:12 PDT 2010
Author: ddunbar
Date: Thu Aug 26 01:02:12 2010
New Revision: 112173
URL: http://llvm.org/viewvc/llvm-project?rev=112173&view=rev
Log:
CGValue: Increase width of allowed alignment. We could switch to log2, but we
don't currently need the bits anyway.
Modified:
cfe/trunk/lib/CodeGen/CGValue.h
Modified: cfe/trunk/lib/CodeGen/CGValue.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGValue.h?rev=112173&r1=112172&r2=112173&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGValue.h (original)
+++ cfe/trunk/lib/CodeGen/CGValue.h Thu Aug 26 01:02:12 2010
@@ -138,7 +138,7 @@
Qualifiers Quals;
/// The alignment to use when accessing this lvalue.
- unsigned char Alignment;
+ unsigned short Alignment;
// objective-c's ivar
bool Ivar:1;
More information about the cfe-commits
mailing list