me: i wish we could have tail calls in cgcc: we have tail calls at homethe tail calls:
https://godbolt.org/z/GT5PvnxP9
int f(void); static int g(void) { return f(); return 11; } static int h(void) { if (1) [[gnu::musttail]] return f(); return 42; }