Commit caa511fd by Jim Wilson Committed by Jim Wilson

Fix x86-x-ia64 abort while compiling glibc ldbl2mpn.c.

	* function.c (gen_mem_addressof): Clear MEM_ALIAS_SET if no decl.

From-SVN: r35991
parent 9a56f4f6
2000-08-25 Jim Wilson <wilson@cygnus.com>
* function.c (gen_mem_addressof): Clear MEM_ALIAS_SET if no decl.
2000-08-25 Greg McGary <greg@mcgary.org>
* flow.c (dump_edge_info): Use ARRAY_SIZE.
......
......@@ -2834,7 +2834,12 @@ gen_mem_addressof (reg, decl)
fixup_var_refs (reg, GET_MODE (reg), TREE_UNSIGNED (type), 0);
}
else
fixup_var_refs (reg, GET_MODE (reg), 0, 0);
{
/* We have no alias information about this newly created MEM. */
MEM_ALIAS_SET (reg) = 0;
fixup_var_refs (reg, GET_MODE (reg), 0, 0);
}
return reg;
}
......
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