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