#include "namespace.h"
#include "inferior.h"
#include "gdbsupport/unordered_map.h"
+#include "producer.h"
#include <string>
#include <string.h>
found_symbols[sym.symbol->m_name] = sym;
}
- /* Due to a GCC bug, we need to know the boundaries of the current block
- to know if a certain using directive is valid. */
- symtab_and_line boundary_sal = find_sal_for_pc (block->end () - 1, 0);
+ unsigned boundary_line = 0;
+ {
+ struct symbol *fn = block->containing_function ();
+ int major, minor;
+ if (fn != nullptr
+ && producer_is_gcc (fn->symtab ()->compunit ().producer (),
+ &major, &minor)
+ && (major <= 9
+ || (major == 10 && minor < 5)
+ || (major == 11 && minor < 4)
+ || (major == 12 && minor < 3)
+ || (major == 13 && minor < 1)))
+ {
+ /* Due to a GCC bug (PR debug/108716, fixed in 10.5, 11.4, 12.3, 13.1),
+ we need to know the boundaries of the current block to know if a
+ certain using directive is valid. */
+ symtab_and_line boundary_sal = find_sal_for_pc (block->end () - 1, 0);
+ boundary_line = boundary_sal.line;
+ }
+ }
/* Go through the using directives. If any of them add new names to
the namespace we're searching in, see if we can find a match by
/* If the using directive was below the place we are stopped at,
do not use this directive. */
- if (!current->valid_line (boundary_sal.line))
+ if (!current->valid_line (boundary_line))
continue;
len = strlen (current->import_dest);
directive_match = (search_parents
{
CORE_ADDR curr_pc = get_frame_pc (get_selected_frame ());
symtab_and_line curr_sal = find_sal_for_pc (curr_pc, 0);
- return (decl_line <= curr_sal.line)
- || (decl_line >= boundary);
+
+ /* Apply GCC PR debug/108716 workaround. */
+ if (boundary != 0
+ && decl_line >= boundary)
+ return true;
+
+ return decl_line <= curr_sal.line;
}
catch (const gdb_exception &ex)
{
--- /dev/null
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright 2026 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/>. */
+
+namespace mod_a
+{
+ int xxx = 10;
+}
+
+static void
+foo ()
+{
+}
+
+int
+main ()
+{
+ {
+ foo ();
+ using namespace mod_a;
+ }
+
+ return mod_a::xxx;
+}
--- /dev/null
+# Copyright 2026 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 .c
+
+if {[prepare_for_testing "failed to prepare" $testfile $srcfile \
+ {debug c++}]} {
+ return
+}
+
+if {![runto_main]} {
+ continue
+}
+
+# Xfail for incorrect decl_line on DW_TAG_imported_module,
+# GCC PR debug/108716.
+set have_gcc108716_xfail \
+ [expr {[test_compiler_info gcc-*] && [gcc_major_version] < 13}]
+
+# Regression test for PR exp/34203.
+set re_pass [string_to_regexp {No symbol "xxx" in current context.}]
+gdb_test_multiple "print xxx" "" {
+ -re -wrap $re_pass {
+ pass $gdb_test_name
+ }
+ -re -wrap "$valnum_re = 10" {
+ if {$have_gcc108716_xfail} {
+ setup_xfail *-*-* gcc/108716
+ }
+ fail $gdb_test_name
+ }
+}