* a29k-tdep.c (examine_tag): Fix a bug in stack frame size.
This commit is contained in:
parent
3a443b1efe
commit
48855ed5ce
@ -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.
|
||||
|
@ -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 */
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user