summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/rdr-6732143-dangling-block-reference.m
blob: 2d1baa62200930c6d5e6e229cf5470d373302b01 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -triple x86_64-apple-darwin9 -emit-llvm %s -o -

void f0(id x) {
  @synchronized (x) {      
    do { ; } while(0);
    @try {
    } @finally {
    }
  }
}
OpenPOWER on IntegriCloud