blob: 5cd9d666fd055b1f1a0360fbef1eeaf149a74178 [file] [log] [blame]
/* APPLE LOCAL file radar 6035389 */
/* { dg-options "-Werror -fblocks" } */
int print(const char *);
int main()
{
void (^b)(void);
__sync_bool_compare_and_swap(&b, 0, ^{ print("hello\n"); });
return 0;
};