https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71680
Anton Blanchard <anton at samba dot org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |anton at samba dot org --- Comment #1 from Anton Blanchard <anton at samba dot org> --- I'm hitting this on powerpc64le with the following test case: #pragma pack(1) struct { float f0; } a; void foo(int); int main(void) { for (;;) foo((int)a.f0); }