blob: a93ca033c13c8030fc5fd0301429e7950a965f6a [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -emit-llvm -fobjc-exceptions %s -o -
Daniel Dunbaraa5bd872009-04-01 04:37:47 +00002
3void f0(id x) {
4 @synchronized (x) {
5 do { ; } while(0);
6 @try {
7 } @finally {
8 }
9 }
10}