blob: 0222846ccd710b58544169bdaff3a784a028ee53 [file] [log] [blame]
Douglas Gregorc6898362008-11-17 20:45:14 +00001// RUN: clang -emit-llvm -triple=i686-apple-darwin8 -o %t %s
2// RUNX: clang -emit-llvm -o %t %s
Fariborz Jahanianb79e6612008-11-17 18:03:28 +00003
4#include <stdio.h>
5
6void foo(id a) {
7 @synchronized(a) {
8 printf("Swimming? No.");
9 return;
10 }
11}
12