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 hangs on self-recursive code with __attribute__((always_inline)) #40

Open GabrielRavier opened 4 years ago

GabrielRavier commented 4 years ago
__attribute__ ((always_inline)) void f(void)
{
  f();
  f();
}

This hangs cparser with -O2.