aboutsummaryrefslogtreecommitdiff
path: root/packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2021-09-21 19:35:27 +1200
committerGitHub <noreply@github.com>2021-09-21 19:35:27 +1200
commit02d1503f6769be4ad8058b393d4245febced459f (patch)
tree7ed5bd7fb084879f1750b3ad378c404b9e6a9997 /packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch
parent5f5a22f7a7307790ec571d0c5acf8790416964e6 (diff)
parent68088f65c66790c1a5920e67e7e34d9f77e5a20f (diff)
downloadcrosstool-ng-02d1503f6769be4ad8058b393d4245febced459f.tar.gz
crosstool-ng-02d1503f6769be4ad8058b393d4245febced459f.tar.bz2
crosstool-ng-02d1503f6769be4ad8058b393d4245febced459f.zip
Merge pull request #1599 from cpackham/gdb
Gdb update and cleanup
Diffstat (limited to 'packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch')
-rw-r--r--packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch b/packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch
deleted file mode 100644
index f47b4942..00000000
--- a/packages/gdb/7.10.1/0003-WIP-end-of-prologue-detection-hack.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 7f8eacbb468575fb67db7fd1155a3aedaa91911b Mon Sep 17 00:00:00 2001
-From: Max Filippov <jcmvbkbc@gmail.com>
-Date: Sun, 7 Jun 2015 23:15:39 +0300
-Subject: [PATCH] WIP: *end of prologue* detection hack
-
-see
- http://www.esp8266.com/viewtopic.php?p=18461#p18461
- http://www.esp8266.com/viewtopic.php?p=19026#p19026
- http://www.esp8266.com/viewtopic.php?p=19683#p19683
-
-Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
----
- gdb/xtensa-tdep.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/gdb/xtensa-tdep.c
-+++ b/gdb/xtensa-tdep.c
-@@ -2410,7 +2410,7 @@
- /* Find out, if we have an information about the prologue from DWARF. */
- prologue_sal = find_pc_line (start, 0);
- if (prologue_sal.line != 0) /* Found debug info. */
-- body_pc = prologue_sal.end;
-+ body_pc = prologue_sal.end + 40;
-
- /* If we are going to analyze the prologue in general without knowing about
- the current PC, make the best assumtion for the end of the prologue. */