https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117498
--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
With
- char n = 0;
- bar (h, 4, &n, &g);
+ char n[16] = {};
+ bar (h, 4, &n[0], &g);
this isn't miscompiled. Maybe we just align it to 16-byte boundary
automatically?
