fuhsnn / slimcc

C11 compiler with GNU / C23 extensions for x86-64 Linux, able to build Python and PostgreSQL
MIT License
24 stars 3 forks source link

`_Thread_local` attribute wrongly omitted on static local variables #71

Closed fuhsnn closed 4 months ago

fuhsnn commented 4 months ago
int fn(void) {
  static _Thread_local int i;
}