summaryrefslogtreecommitdiff
path: root/packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2019-02-14 07:54:06 (GMT)
committerGitHub <noreply@github.com>2019-02-14 07:54:06 (GMT)
commitfb744d81588395a97cee951a151a56501a500e42 (patch)
tree895628cd0c17103416c97fb4cb4b66ed469428dd /packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch
parentb135af0c4a8a141d537a7e60a989594d354abece (diff)
parent91d01a0e4750be6ab2b71fb953a48dff88dc469b (diff)
Merge pull request #1140 from stilor/upgradecrosstool-ng-1.24.0-rc1
Package updates
Diffstat (limited to 'packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch')
-rw-r--r--packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch b/packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch
new file mode 100644
index 0000000..dca5a2f
--- /dev/null
+++ b/packages/gdb/8.2.1/0003-WIP-end-of-prologue-detection-hack.patch
@@ -0,0 +1,26 @@
+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
+@@ -2399,7 +2399,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. */