rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr23445.c

11 lines
242 B
C

struct buffer_head {
char *b_data;
};
void asfs_deletebnode( struct buffer_head *bhsec) {
if (bhsec == 0) {
void *bnc2 = (void *) bhsec->b_data;
if (bnc2) return;
if (bhsec) __brelse(bhsec);
}
}