forked from OSchip/llvm-project
11 lines
173 B
Mathematica
11 lines
173 B
Mathematica
|
// RUN: clang-cc -triple x86_64-apple-darwin9 -emit-llvm %s -o -
|
||
|
|
||
|
void f0(id x) {
|
||
|
@synchronized (x) {
|
||
|
do { ; } while(0);
|
||
|
@try {
|
||
|
} @finally {
|
||
|
}
|
||
|
}
|
||
|
}
|