cparser
cparser copied to clipboard
cparser hangs on self-recursive code with __attribute__((always_inline))
__attribute__ ((always_inline)) void f(void)
{
f();
f();
}
This hangs cparser with -O2
.