Commit 432fd734 by Bernd Schmidt Committed by Bernd Schmidt

Don't use MEM_ALIAS_SET on a REG

From-SVN: r38653
parent 1104c18d
2001-01-01 Bernd Schmidt <bernds@redhat.com>
* builtins.c (expand_builtin_return_addr): Don't use MEM_ALIAS_SET on
a REG rtx.
2001-01-03 Alexandre Oliva <aoliva@redhat.com>
* combine.c (simplify_shift_const): Even if we're sign-extracting,
......
......@@ -432,8 +432,9 @@ expand_builtin_return_addr (fndecl_code, count, tem)
tem = DYNAMIC_CHAIN_ADDRESS (tem);
#endif
tem = memory_address (Pmode, tem);
tem = copy_to_reg (gen_rtx_MEM (Pmode, tem));
tem = gen_rtx_MEM (Pmode, tem);
MEM_ALIAS_SET (tem) = get_frame_alias_set ();
tem = copy_to_reg (tem);
}
/* For __builtin_frame_address, return what we've got. */
......
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