2002-04-20 David S. Miller <davem@redhat.com>

* sparc-tdep.c (sparc_pop_frame): Only need to allocate
	SPARC_INTREG_SIZE * 16 bytes for reg_temp.
This commit is contained in:
David S. Miller 2002-04-24 07:12:27 +00:00
parent 5a595886e4
commit 69cdf6a234
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-04-20 David S. Miller <davem@redhat.com>
* sparc-tdep.c (sparc_pop_frame): Only need to allocate
SPARC_INTREG_SIZE * 16 bytes for reg_temp.
2002-04-21 David S. Miller <davem@redhat.com>
* remote-vxsparc.c (vx_read_register): Fix typo, we want

View File

@ -1262,7 +1262,7 @@ sparc_pop_frame (void)
char *reg_temp;
reg_temp = alloca (REGISTER_BYTES);
reg_temp = alloca (SPARC_INTREG_SIZE * 16);
read_memory (fsr[I0_REGNUM], raw_buffer, 8 * SPARC_INTREG_SIZE);