libfirm / cparser

C99 parser and frontend for libfirm
http://pp.ipd.kit.edu/firm
GNU General Public License v2.0
336 stars 38 forks source link

cparser aborts on using labels as values #24

Open GabrielRavier opened 4 years ago

GabrielRavier commented 4 years ago
void *f(void)
{
label:
  &&label;
}

With trunk cparser, this results in :

Verify warning: Block BB[64:9](f[59]): immature block found
Verify warning: Block BB[64:9](f[59]): normal block must have at least 1 input
Aborted (core dumped)