Commit 08e42d8b by Richard Kenner Committed by Richard Kenner

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
parent 763b9879
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment