aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/symtab.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index aff420c..000b921 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2012-03-21 Kevin Buettner <kevinb@redhat.com>
+
+ * symtab.c (skip_prologue_sal): Change test to check for "main()"
+ in addition to "main".
+
2012-03-21 Joel Brobecker <brobecker@adacore.com>
* expression.h (op_name): Add declaration.
diff --git a/gdb/symtab.c b/gdb/symtab.c
index c2580a1..af115cd 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -2776,7 +2776,7 @@ skip_prologue_sal (struct symtab_and_line *sal)
to `__main' in `main' between the prologue and before user
code. */
if (gdbarch_skip_main_prologue_p (gdbarch)
- && name && strcmp (name, "main") == 0)
+ && name && strcmp_iw (name, "main") == 0)
{
pc = gdbarch_skip_main_prologue (gdbarch, pc);
/* Recalculate the line number (might not be N+1). */