John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-fragile-abi -emit-llvm -fobjc-exceptions %s -o - |
Daniel Dunbar | aa5bd87 | 2009-04-01 04:37:47 +0000 | [diff] [blame] | 2 | |
3 | void f0(id x) { | ||||
4 | @synchronized (x) { | ||||
5 | do { ; } while(0); | ||||
6 | @try { | ||||
7 | } @finally { | ||||
8 | } | ||||
9 | } | ||||
10 | } |