summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2006-03-30 16:48:47 +0000
committerDaniel Jacobowitz <dan@debian.org>2006-03-30 16:48:47 +0000
commit88d1136ce128c6c182541f44bd104c75032a84c0 (patch)
tree50d9c6e9f0795c54b428bf923402d7b9f478f8dd
parentc05233c73ad676878de7a7d79c56a3236a8d5dd5 (diff)
downloadgdb-88d1136ce128c6c182541f44bd104c75032a84c0.tar.gz
* arm-tdep.c (thumb_scan_prologue): Don't try to analyze
the function at zero if we have no symbols.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/arm-tdep.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 799f7370837..8253c23e9fc 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
+
+ * arm-tdep.c (thumb_scan_prologue): Don't try to analyze
+ the function at zero if we have no symbols.
+
2006-03-30 Adrien Kunysz <a_kunysz@yahoo.com>
* i386-stub.c (getpacket): Fix array overflow.
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c
index cb3c2615910..6b574653f63 100644
--- a/gdb/arm-tdep.c
+++ b/gdb/arm-tdep.c
@@ -466,9 +466,9 @@ thumb_scan_prologue (CORE_ADDR prev_pc, struct arm_prologue_cache *cache)
prologue_end = sal.end; /* (probably means no prologue) */
}
else
- /* We're in the boondocks: allow for
- 16 pushes, an add, and "mv fp,sp". */
- prologue_end = prologue_start + 40;
+ /* We're in the boondocks: we have no idea where the start of the
+ function is. */
+ return;
prologue_end = min (prologue_end, prev_pc);