blob: b4d21a3f8fccd3657b0f22d35daf3c665c7acb02 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -emit-llvm %s -o -
Daniel Dunbarf77e2922009-04-01 04:37:47 +00002
3void f0(id x) {
4 @synchronized (x) {
5 do { ; } while(0);
6 @try {
7 } @finally {
8 }
9 }
10}