blob: fb808b3b771b18cf8c3941e2bb93ede126149432 [file] [log] [blame]
John McCall5fb5df92012-06-20 06:18:46 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fobjc-exceptions %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}