Date: Tue, 20 Apr 1999 16:17:16 -0700 From: Jason Thorpe <thorpej@nas.nasa.gov> To: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp> Cc: dfr@nlsystems.com, gallatin@cs.duke.edu, freebsd-alpha@FreeBSD.ORG, obrien@NUXI.com Subject: Re: EGCS and Alpha builds Message-ID: <199904202317.QAA15606@lestat.nas.nasa.gov>
next in thread | raw e-mail | index | archive | help
On Fri, 16 Apr 1999 00:48:13 +0900 Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp> wrote: > Here is a gdb fix. > > --- alpha-tdep.c.orig Thu Apr 8 21:24:45 1999 > +++ alpha-tdep.c Fri Apr 16 00:44:29 1999 > @@ -502,6 +502,10 @@ > epilogue is reached. */ > break; > } > + else if ((word & 0xfff00fff) == 0x43c0053e) /* subq $sp,n,$sp */ > + { > + frame_size += word & 0xff; > + } > else if ((word & 0xfc1f0000) == 0xb41e0000 /* stq reg,n($sp) */ > && (word & 0xffff0000) != 0xb7fe0000) /* reg != $zero */ > { This fix isn't correct. You get the wrong function and literal. -- Jason R. Thorpe <thorpej@nas.nasa.gov> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199904202317.QAA15606>