You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
342 B
21 lines
342 B
4 months ago
|
// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
|
||
|
|
||
|
id SYNCH_EXPR();
|
||
|
void SYNCH_BODY();
|
||
|
void SYNCH_BEFORE();
|
||
|
void SYNC_AFTER();
|
||
|
|
||
|
void foo(id sem)
|
||
|
{
|
||
|
SYNCH_BEFORE();
|
||
|
@synchronized (SYNCH_EXPR()) {
|
||
|
SYNCH_BODY();
|
||
|
return;
|
||
|
}
|
||
|
SYNC_AFTER();
|
||
|
@synchronized ([sem self]) {
|
||
|
SYNCH_BODY();
|
||
|
return;
|
||
|
}
|
||
|
}
|