https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118560
Sam James <sjames at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |vmakarov at gcc dot gnu.org
--- Comment #1 from Sam James <sjames at gcc dot gnu.org> ---
Reduced:
```
struct {
_Decimal32 a;
} b;
void c(int, _Decimal32 d) {
c(1, 1);
b.a = d;
}
```
I also get a bunch of reload attempts exhausted in libgcc.
