1 2 3 4 5 6 7 8 9 10 11
// RUN: clang-cc -emit-llvm -o - typedef int __attribute__((aligned(32))) ai; void f() { __block ai a = 10; ^{ a = 20; }(); }