cparser fails to detect alias cycle
GabrielRavier opened this issue · 0 comments
GabrielRavier commented
void f(void) __attribute__((alias("f")));
void g()
{
f();
}
This code hangs cparser.
GabrielRavier opened this issue · 0 comments
void f(void) __attribute__((alias("f")));
void g()
{
f();
}
This code hangs cparser.