freebsd-dev/test/CodeGen/rdr-6732143-dangling-block-reference.m

11 lines
173 B
Mathematica
Raw Normal View History

2009-06-02 17:58:47 +00:00
// RUN: clang-cc -triple x86_64-apple-darwin9 -emit-llvm %s -o -
void f0(id x) {
@synchronized (x) {
do { ; } while(0);
@try {
} @finally {
}
}
}