Commit 98e5e087 by Jan Hubicka Committed by Jan Hubicka

reload.c (get_secondary_mem): Fix updating of secondary_memlocs_elim_used.

	* reload.c (get_secondary_mem):  Fix updating of
	secondary_memlocs_elim_used.

From-SVN: r76989
parent 3234b52d
2004-01-30 Jan Hubicka <jh@suse.cz>
* reload.c (get_secondary_mem): Fix updating of
secondary_memlocs_elim_used.
2004-01-30 Richard Henderson <rth@redhat.com> 2004-01-30 Richard Henderson <rth@redhat.com>
* varasm.c (struct rtx_const, struct pool_constant): Remove. * varasm.c (struct rtx_const, struct pool_constant): Remove.
......
...@@ -645,8 +645,8 @@ get_secondary_mem (rtx x ATTRIBUTE_UNUSED, enum machine_mode mode, ...@@ -645,8 +645,8 @@ get_secondary_mem (rtx x ATTRIBUTE_UNUSED, enum machine_mode mode,
} }
secondary_memlocs_elim[(int) mode][opnum] = loc; secondary_memlocs_elim[(int) mode][opnum] = loc;
if (secondary_memlocs_elim_used <= opnum) if (secondary_memlocs_elim_used <= (int)mode)
secondary_memlocs_elim_used = opnum + 1; secondary_memlocs_elim_used = (int)mode + 1;
return loc; return loc;
} }
......
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