Commit e7844ffb by Jan Hubicka Committed by Jan Hubicka

alias.c (get_alias_set): Initialize alias set to 0 when subset is impossible.

	* alias.c (get_alias_set):  Initialize alias set to 0 when subset is
	impossible.

From-SVN: r75861
parent 73e232f0
2004-01-14 Jan Hubicka <jh@suse.cz>
* alias.c (get_alias_set): Initialize alias set to 0 when subset is
impossible.
2004-01-14 Kelley Cook <kcook@gcc.gnu.org>
* Makefile.in: Define MAINT from --enable-maintainer-mode.
......
......@@ -507,7 +507,7 @@ get_alias_set (tree t)
if (pointed_to_alias_set == 0)
/* It's not legal to make a subset of alias set zero. */
;
DECL_POINTER_ALIAS_SET (decl) = 0;
else
{
DECL_POINTER_ALIAS_SET (decl) = new_alias_set ();
......
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