aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-28 21:02:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-28 21:02:49 +0000
commit2b754c248784f40f47b22005efdc13fb1600ce79 (patch)
tree0a80807ee0c2957eee2750cb46b5b1c7b179b7c8 /toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch
parentdfd746cd47bd2591e8abebe33da7f4c0ab947f1e (diff)
downloadupstream-2b754c248784f40f47b22005efdc13fb1600ce79.tar.gz
upstream-2b754c248784f40f47b22005efdc13fb1600ce79.tar.bz2
upstream-2b754c248784f40f47b22005efdc13fb1600ce79.zip
upgrade the cross-gdb to 6.8 (patch from #4701)
SVN-Revision: 14697
Diffstat (limited to 'toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch')
-rw-r--r--toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch b/toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch
deleted file mode 100644
index 8b81cca710..0000000000
--- a/toolchain/gdb/patches/660-debian_dwarf-cfa-restore.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Status: Checked in to HEAD after 6.3.
-
-2004-11-09 Daniel Jacobowitz <dan@debian.org>
-
- * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Correct allocated
- size.
-
-Index: src/gdb/dwarf2-frame.c
-===================================================================
-RCS file: /cvs/src/src/gdb/dwarf2-frame.c,v
-retrieving revision 1.45
-diff -u -p -r1.45 dwarf2-frame.c
---- src/gdb/dwarf2-frame.c 7 Nov 2004 21:16:11 -0000 1.45
-+++ src/gdb/dwarf2-frame.c 9 Nov 2004 14:42:52 -0000
-@@ -162,7 +162,7 @@ dwarf2_frame_state_alloc_regs (struct dw
- static struct dwarf2_frame_state_reg *
- dwarf2_frame_state_copy_regs (struct dwarf2_frame_state_reg_info *rs)
- {
-- size_t size = rs->num_regs * sizeof (struct dwarf2_frame_state_reg_info);
-+ size_t size = rs->num_regs * sizeof (struct dwarf2_frame_state_reg);
- struct dwarf2_frame_state_reg *reg;
-
- reg = (struct dwarf2_frame_state_reg *) xmalloc (size);