]> granicus.if.org Git - clang/commitdiff
Fix PR9253, allowing attribute(aligned) to reduce the alignment of
authorChris Lattner <sabre@nondot.org>
Sat, 19 Feb 2011 22:55:41 +0000 (22:55 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 19 Feb 2011 22:55:41 +0000 (22:55 +0000)
a typedef.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126059 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/ASTContext.cpp
test/Sema/struct-packed-align.c

index 94f3b3372758ab984c7c58010a37e0869d145ed2..7da2f348439893927a59bca6cbdc01de96065805 100644 (file)
@@ -882,7 +882,13 @@ ASTContext::getTypeInfo(const Type *T) const {
     const TypedefDecl *Typedef = cast<TypedefType>(T)->getDecl();
     std::pair<uint64_t, unsigned> Info
       = getTypeInfo(Typedef->getUnderlyingType().getTypePtr());
-    Align = std::max(Typedef->getMaxAlignment(), Info.second);
+    // If the typedef has an aligned attribute on it, it overrides any computed
+    // alignment we have.  This violates the GCC documentation (which says that
+    // attribute(aligned) can only round up) but matches its implementation.
+    if (unsigned AttrAlign = Typedef->getMaxAlignment())
+      Align = AttrAlign;
+    else
+      Align = Info.second;
     Width = Info.first;
     break;
   }
index 2b9456703c7274a4e7a527fed191bd87e782edb3..6ca6a6096c4ea6640bbb8bb3e2862f23f7cf1008 100644 (file)
@@ -117,3 +117,18 @@ struct packed_fas2 {
 
 extern int m1[sizeof(struct packed_fas2) == 1 ? 1 : -1];
 extern int m2[__alignof(struct packed_fas2) == 1 ? 1 : -1];
+
+// Attribute aligned can round down typedefs.  PR9253
+typedef long long  __attribute__((aligned(1))) nt;
+
+struct nS {
+  char buf_nr;
+  nt start_lba;
+};
+
+extern int n1[sizeof(struct nS) == 9 ? 1 : -1];
+extern int n2[__alignof(struct nS) == 1 ? 1 : -1];
+
+
+
+