mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-20 19:29:48 +08:00
function.c (assign_stack_temp_for_type): Clear alias set before setting new one.
* function.c (assign_stack_temp_for_type): Clear alias set before setting new one. From-SVN: r47303
This commit is contained in:
parent
763b9879b9
commit
08e42d8b55
@ -1,3 +1,8 @@
|
||||
Sat Nov 24 16:11:00 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
||||
|
||||
* function.c (assign_stack_temp_for_type): Clear alias set before
|
||||
setting new one.
|
||||
|
||||
2001-11-23 David Edelsohn <edelsohn@gnu.org>
|
||||
|
||||
* rs6000.c (print_operand, case 'v'): Use HOST_WIDE_INT_PRINT_HEX
|
||||
|
@ -787,6 +787,7 @@ assign_stack_temp_for_type (mode, size, keep, type)
|
||||
MEM_IN_STRUCT_P (p->slot) = 0;
|
||||
MEM_SCALAR_P (p->slot) = 0;
|
||||
MEM_VOLATILE_P (p->slot) = 0;
|
||||
set_mem_alias_set (p->slot, 0);
|
||||
|
||||
/* If we know the alias set for the memory that will be used, use
|
||||
it. If there's no TYPE, then we don't know anything about the
|
||||
|
Loading…
Reference in New Issue
Block a user