Commit c49f511c by Richard Henderson Committed by Richard Henderson

* function.c (gen_mem_addressof): Don't call get_alias_set if no decl.

From-SVN: r45030
parent c45632b7
2001-08-19 Richard Henderson <rth@redhat.com>
* function.c (gen_mem_addressof): Don't call get_alias_set if no decl.
2001-08-19 Richard Henderson <rth@redhat.com>
* config/ia64/ia64.h (STRIP_NAME_ENCODING): Handle @ and *
in the same string.
(ASM_NAME_TO_STRING): Remove.
......
......@@ -2863,7 +2863,7 @@ gen_mem_addressof (reg, decl)
REGNO (reg), decl);
/* Calculate this before we start messing with decl's RTL. */
HOST_WIDE_INT set = get_alias_set (decl);
HOST_WIDE_INT set = decl ? get_alias_set (decl) : 0;
/* If the original REG was a user-variable, then so is the REG whose
address is being taken. Likewise for unchanging. */
......
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