cparser icon indicating copy to clipboard operation
cparser copied to clipboard

cparser hangs on self-recursive code with __attribute__((always_inline))

Open GabrielRavier opened this issue 4 years ago • 0 comments

__attribute__ ((always_inline)) void f(void)
{
  f();
  f();
}

This hangs cparser with -O2.

GabrielRavier avatar Jun 05 '20 07:06 GabrielRavier