aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-04-29 16:24:01 +0000
committerMark Kettenis <kettenis@gnu.org>2004-04-29 16:24:01 +0000
commite63bbc887e4d3f7cd78ed15a1fe478e0a9eb4f8e (patch)
treeadc48be6fa9b305c6fbbcfb3f743fd43384d7acf
parentfd35795f4f300f28d87bf6597961a389df8c1ae2 (diff)
downloadfsf-binutils-gdb-e63bbc887e4d3f7cd78ed15a1fe478e0a9eb4f8e.zip
fsf-binutils-gdb-e63bbc887e4d3f7cd78ed15a1fe478e0a9eb4f8e.tar.gz
fsf-binutils-gdb-e63bbc887e4d3f7cd78ed15a1fe478e0a9eb4f8e.tar.bz2
Mark Kettenis <kettenis@gnu.org>
* i386-tdep.c (i386_skip_prologue): follow the last jump only if the function begins with a branch instruction.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/i386-tdep.c8
2 files changed, 13 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f966fd9..fc8d338 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-19 Jerome Guitton <guitton@gnat.com>
+ Mark Kettenis <kettenis@gnu.org>
+
+ * i386-tdep.c (i386_skip_prologue): follow the last jump only if
+ the function begins with a branch instruction.
+
2004-04-29 Mark Kettenis <kettenis@gnu.org>
* i386-tdep.c: Fix spelling mistakes.
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c
index 2ee8695..5e4eec9 100644
--- a/gdb/i386-tdep.c
+++ b/gdb/i386-tdep.c
@@ -750,7 +750,13 @@ i386_skip_prologue (CORE_ADDR start_pc)
}
}
- return i386_follow_jump (pc);
+ /* If the function starts with a branch (to startup code at the end)
+ the last instruction should bring us back to the first
+ instruction of the real code. */
+ if (i386_follow_jump (start_pc) != start_pc)
+ pc = i386_follow_jump (pc);
+
+ return pc;
}
/* This function is 64-bit safe. */