gdb/
authorTiago Daitx <tdaitx@sourceware.org>
Thu, 24 Jan 2013 20:36:03 +0000 (20:36 +0000)
committerTiago Daitx <tdaitx@sourceware.org>
Thu, 24 Jan 2013 20:36:03 +0000 (20:36 +0000)
    * symtab.c (skip_prologue_using_sal): Consider a file
    change the same as an increased line number

gdb/testsuite/
    * gdb.base/prologue-include.c: New file.
    * gdb.base/prologue-include.exp: New file.
    * gdb.base/prologue-include.h: New file.

gdb/ChangeLog
gdb/symtab.c
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/prologue-include.c [new file with mode: 0644]
gdb/testsuite/gdb.base/prologue-include.exp [new file with mode: 0644]
gdb/testsuite/gdb.base/prologue-include.h [new file with mode: 0644]

index b6192d075d850a32e56fc40753fb4a34324a3939..94071bf1cff8de0da80851b524d9787f5ecba421 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * symtab.c (skip_prologue_using_sal): Consider a file
+       change the same as an increased line number
+
 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
 
        * MAINTAINERS (Write After Approval): Add myself to the list. 
index d40436a72b0ad945ec3368e174d47600fb816b27..b200b36d3cff680647be557c5dfdb11a605b41be 100644 (file)
@@ -4905,6 +4905,10 @@ skip_prologue_using_sal (struct gdbarch *gdbarch, CORE_ADDR func_addr)
             line mark the prologue -> body transition.  */
          if (sal.line >= prologue_sal.line)
            break;
+         /* Likewise if we are in a different symtab altogether
+            (e.g. within a file included via #include).  */
+         if (sal.symtab != prologue_sal.symtab)
+           break;
 
          /* The line number is smaller.  Check that it's from the
             same function, not something inlined.  If it's inlined,
index 62cd5548da1aab9483e09e9e299cda4f038756d2..46c7c5713f414ec973fef148f3960891c72d1076 100644 (file)
@@ -1,3 +1,9 @@
+2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
+
+       * gdb.base/prologue-include.c: New file.
+       * gdb.base/prologue-include.exp: New file.
+       * gdb.base/prologue-include.h: New file.
+
 2013-01-24  Hafiz Abid Qadeer  <abidh@codesourcery.com>
 
        PR gdb/13443
diff --git a/gdb/testsuite/gdb.base/prologue-include.c b/gdb/testsuite/gdb.base/prologue-include.c
new file mode 100644 (file)
index 0000000..c393e75
--- /dev/null
@@ -0,0 +1,25 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2013 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+int
+main (void)
+{
+  int i, j;
+#include "prologue-include.h"
+  return 0;
+}
+
diff --git a/gdb/testsuite/gdb.base/prologue-include.exp b/gdb/testsuite/gdb.base/prologue-include.exp
new file mode 100644 (file)
index 0000000..ed378b8
--- /dev/null
@@ -0,0 +1,26 @@
+# Copyright (C) 2013 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+standard_testfile
+
+if { [prepare_for_testing ${testfile}.exp ${testfile}] } {
+    return -1
+}
+
+set bp_main [gdb_get_line_number "break main" ${testfile}.h]
+
+gdb_test "break main" \
+    "Breakpoint.*at.* file .*$testfile.h, line $bp_main\\." \
+    "breakpoint main"
diff --git a/gdb/testsuite/gdb.base/prologue-include.h b/gdb/testsuite/gdb.base/prologue-include.h
new file mode 100644 (file)
index 0000000..77843e0
--- /dev/null
@@ -0,0 +1,19 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2013 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+  i = 2; /* break main should stop here */
+  j = 2;
This page took 0.043242 seconds and 4 git commands to generate.