https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82518
--- Comment #42 from Wilco <wilco.dijkstra at arm dot com> --- Cut down example: typedef struct { int x, y; } X; void f (X *p, int n) { for (int i = 0; i < n; i++) { p[i].x = i; p[i].y = i + 1; } }
wilco.dijkstra at arm dot com Thu, 15 Feb 2018 12:36:12 -0800
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82518
--- Comment #42 from Wilco <wilco.dijkstra at arm dot com> --- Cut down example: typedef struct { int x, y; } X; void f (X *p, int n) { for (int i = 0; i < n; i++) { p[i].x = i; p[i].y = i + 1; } }