[clang] [llvm] [ARM] musttail fixes (PR #102896)

Eli Friedman via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 12 12:10:56 PDT 2024


https://github.com/efriedma-quic commented:

Please also add a testcase for something like:
```
struct Large { int x[60]; };
void f(long long a, long long b, Large c, Large d);
void g(long long a, long long b, Large c, Large d) {
  [[clang::musttail]] return f(a,b,d,c);
}
```

https://github.com/llvm/llvm-project/pull/102896


More information about the cfe-commits mailing list