* a29k-tdep.c (examine_tag): Fix a bug in stack frame size.

This commit is contained in:
Kung Hsu 1994-11-22 18:31:18 +00:00
parent 3a443b1efe
commit 48855ed5ce
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Nov 22 10:25:59 1994 Kung Hsu (kung@mexican.cygnus.com)
* a29k-tdep.c (examine_tag): Fix a bug in stack frame size.
Sat Nov 19 03:10:51 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* config/i386/i386sol2.mh: Reenable core file support.

View File

@ -355,9 +355,9 @@ examine_tag (p, is_trans, argcount, msize, mfp_used)
return 0;
if (tag1 & (1<<23)) /* A two word tag */
{
tag2 = read_memory_integer (p+4, 4);
tag2 = read_memory_integer (p-4, 4);
if (msize)
*msize = tag2;
*msize = tag2 * 2;
}
else /* A one word tag */
{