https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68273
--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
Also consider
typedef int myint __attribute__((align(1)));
void foo (int, int);
void bar()
{
foo ((myint)1, (myint)2);
foo (1, 2);
}
