]> granicus.if.org Git - clang/commitdiff
During block layout, after padding up to the max field alignment,
authorJohn McCall <rjmccall@apple.com>
Tue, 1 May 2012 20:28:00 +0000 (20:28 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 1 May 2012 20:28:00 +0000 (20:28 +0000)
the alignment might actually exceed the max field alignment;  don't
assert in this case.

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

lib/CodeGen/CGBlocks.cpp
test/CodeGen/blocks.c

index 379da11033d417cb3e4910ffea4e096d1449dae0..1a1fe65ff88db214810ac5bc1a9220cc960535fa 100644 (file)
@@ -469,9 +469,10 @@ static void computeBlockInfo(CodeGenModule &CGM, CodeGenFunction *CGF,
     elementTypes.push_back(llvm::ArrayType::get(CGM.Int8Ty,
                                                 padding.getQuantity()));
     blockSize = newBlockSize;
-    endAlign = maxFieldAlign;
+    endAlign = getLowBit(blockSize); // might be > maxFieldAlign
   }
 
+  assert(endAlign >= maxFieldAlign);
   assert(endAlign == getLowBit(blockSize));
 
   // Slam everything else on now.  This works because they have
index 77fb0e1899895bfdea23c3b0d2251bd3700553f3..40bab5f63d2357fed69ce6f4fc52d72f3e637505 100644 (file)
@@ -42,9 +42,27 @@ void f3() {
 }
 
 // rdar://problem/11322251
+// The bool can fill in between the header and the long long.
+// Add the appropriate amount of padding between them.
 void f4_helper(long long (^)(void));
+// CHECK: define void @f4()
 void f4(void) {
   _Bool b = 0;
   long long ll = 0;
+  // CHECK: alloca <{ i8*, i32, i32, i8*, {{%.*}}*, i8, [3 x i8], i64 }>, align 8
   f4_helper(^{ if (b) return ll; return 0LL; });
 }
+
+// rdar://problem/11354538
+// The alignment after rounding up to the align of F5 is actually
+// greater than the required alignment.  Don't assert.
+struct F5 {
+  char buffer[32] __attribute((aligned));
+};
+void f5_helper(void (^)(struct F5 *));
+// CHECK: define void @f5()
+void f5(void) {
+  struct F5 value;
+  // CHECK: alloca <{ i8*, i32, i32, i8*, {{%.*}}*, [12 x i8], [[F5:%.*]] }>, align 16
+  f5_helper(^(struct F5 *slot) { *slot = value; });
+}