summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/blocks-aligned-byref-variable.c
blob: 975c03a43c19b4dcc4daa7bea3179e06e56441bc (plain)
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;
  }();
}

OpenPOWER on IntegriCloud