diff options
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index e41dc9a8cfe..319ba13f1f7 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -2076,7 +2076,7 @@ alter_reg (int i, int from_reg) inherent space, and no less total space, then the previous slot. */ if (from_reg == -1) { - HOST_WIDE_INT alias_set = new_alias_set (); + alias_set_type alias_set = new_alias_set (); /* No known place to spill from => no slot to reuse. */ x = assign_stack_local (mode, total_size, @@ -2128,14 +2128,14 @@ alter_reg (int i, int from_reg) /* All pseudos mapped to this slot can alias each other. */ if (spill_stack_slot[from_reg]) { - HOST_WIDE_INT alias_set + alias_set_type alias_set = MEM_ALIAS_SET (spill_stack_slot[from_reg]); set_mem_alias_set (x, alias_set); dse_invalidate_singleton_alias_set (alias_set); } else { - HOST_WIDE_INT alias_set = new_alias_set (); + alias_set_type alias_set = new_alias_set (); set_mem_alias_set (x, alias_set); dse_record_singleton_alias_set (alias_set, mode); } |