blob: 975c03a43c19b4dcc4daa7bea3179e06e56441bc [file] [log] [blame]
Anders Carlssonf8e94f22009-09-12 02:44:18 +00001// 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