[Bug tree-optimization/127195] ice in flow_bb_inside_loop_p at cfgloop.cc:846
dcb314 at hotmail dot com
gcc-bugzilla@gcc.gnu.org
Wed Sep 2 22:02:47 GMT 2026
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=127195
--- Comment #2 from David Binderman <dcb314 at hotmail dot com> ---
Reduced code seems to be:
typedef struct {
unsigned bold : 1;
unsigned : 16
} vbi_char;
typedef struct {
vbi_char text[]
} vbi_page;
vbi_page enhance_pg;
vbi_char *enhance_acp = &enhance_pg.text[1];
int enhance_col, enhance_column;
void enhance() {
for (;;) {
int bold;
enhance_col = enhance_column;
for (; enhance_col; enhance_col++)
enhance_acp[enhance_col].bold = bold;
}
}
More information about the Gcc-bugs
mailing list