Component: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: stefan at franke dot ms
Target Milestone: ---
consider this simple loop:
```
void ArrayFill2(int *array, int len) {
int i = 0;
for(; i < len; ++i)
array[i] = 50;
}
```
gcc 2.93 was able to conv
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87944
Stefan "Bebbo" Franke changed:
What|Removed |Added
CC| |stefan at fra
: rtl-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: stefan at franke dot ms
Target Milestone: ---
The method regrename_do_replace does neither update the df refs nor reset the
ever_live flag. Also the passes for stack variables are scheduled to early.
This
Priority: P3
Component: rtl-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: stefan at franke dot ms
Target Milestone: ---
The method
static void
df_ref_change_reg_with_loc_1 (struct df_reg_info *old_df,
struct
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70961
Stefan "Bebbo" Franke changed:
What|Removed |Added
CC| |stefan at fra