blob: 5f0cb2e9cd1fb235a55983456de3edea442d1067 [file] [log] [blame]
/* APPLE LOCAL file radar 6083129 byref escapes */
/* { dg-options "-fblocks" } */
/* { dg-do run } */
#include <stdio.h>
extern "C" void abort(void);
void _Block_byref_assign_copy(void *a, void *b){};
static int count;
static void _Block_byref_release(void * arg) {
printf ("%p\n", arg);
++count;
}
int main1() {
__byref int X = 1234;
if (X) {
__byref int local_BYREF = 100;
X += 100 + local_BYREF;
return count-2;
}
return -1;
}
int main() {
main1();
return count-2;
}