This commit is contained in:
parent
ec41293d68
commit
9b57370743
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 11 18:29:13 CET 2007 - schwab@suse.de
|
||||||
|
|
||||||
|
- Fix unchecked use of PC_REGNUM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 20 12:37:40 CET 2006 - schwab@suse.de
|
Wed Dec 20 12:37:40 CET 2006 - schwab@suse.de
|
||||||
|
|
||||||
|
8
gdb.spec
8
gdb.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gdb (Version 6.6)
|
# spec file for package gdb (Version 6.6)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -21,7 +21,7 @@ Group: Development/Tools/Debuggers
|
|||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
PreReq: %{install_info_prereq}
|
PreReq: %{install_info_prereq}
|
||||||
Version: 6.6
|
Version: 6.6
|
||||||
Release: 1
|
Release: 8
|
||||||
Summary: The GNU Debugger
|
Summary: The GNU Debugger
|
||||||
Source: gdb-%{version}.tar.bz2
|
Source: gdb-%{version}.tar.bz2
|
||||||
Patch1: gdb-misc.patch
|
Patch1: gdb-misc.patch
|
||||||
@ -38,6 +38,7 @@ Patch12: ppc-long-double.diff
|
|||||||
Patch13: lr-frame-offset.diff
|
Patch13: lr-frame-offset.diff
|
||||||
Patch14: ppc64-fdesc.diff
|
Patch14: ppc64-fdesc.diff
|
||||||
Patch15: solib-extract-address.diff
|
Patch15: solib-extract-address.diff
|
||||||
|
Patch16: pc-regnum.diff
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -82,6 +83,7 @@ cd ..
|
|||||||
%patch13 -p1
|
%patch13 -p1
|
||||||
%patch14
|
%patch14
|
||||||
%patch15
|
%patch15
|
||||||
|
%patch16
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS" \
|
CFLAGS="$RPM_OPT_FLAGS" \
|
||||||
@ -137,6 +139,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog -n gdb
|
%changelog -n gdb
|
||||||
|
* Thu Jan 11 2007 - schwab@suse.de
|
||||||
|
- Fix unchecked use of PC_REGNUM.
|
||||||
* Wed Dec 20 2006 - schwab@suse.de
|
* Wed Dec 20 2006 - schwab@suse.de
|
||||||
- Update to gdb 6.6.
|
- Update to gdb 6.6.
|
||||||
* New targets
|
* New targets
|
||||||
|
16
pc-regnum.diff
Normal file
16
pc-regnum.diff
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
--- gdb/frame.c 11 Jan 2007 17:40:17 +0100 1.218
|
||||||
|
+++ gdb/frame.c 11 Jan 2007 17:43:00 +0100
|
||||||
|
@@ -1223,8 +1223,11 @@ get_prev_frame_1 (struct frame_info *thi
|
||||||
|
happen when the prologue analyzer finds a stack adjustment, but
|
||||||
|
no PC save. This check does assume that the "PC register" is
|
||||||
|
roughly a traditional PC, even if the gdbarch_unwind_pc method
|
||||||
|
- frobs it. */
|
||||||
|
- if (this_frame->level > 0
|
||||||
|
+ frobs it.
|
||||||
|
+
|
||||||
|
+ Skip this check when there is no "PC register". */
|
||||||
|
+ if (PC_REGNUM >= 0
|
||||||
|
+ && this_frame->level > 0
|
||||||
|
&& get_frame_type (this_frame) == NORMAL_FRAME
|
||||||
|
&& get_frame_type (this_frame->next) == NORMAL_FRAME)
|
||||||
|
{
|
Loading…
x
Reference in New Issue
Block a user