We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76cf1f commit 1dc9069Copy full SHA for 1dc9069
gdb/ChangeLog
@@ -1,3 +1,8 @@
1
+2018-01-05 Pedro Alves <palves@redhat.com>
2
+
3
+ * spu-tdep.c (spu_catch_start): Pass
4
+ symbol_name_match_type::SEARCH_NAME to block_lookup_symbol.
5
6
2018-01-05 Pedro Alves <palves@redhat.com>
7
8
PR gdb/22670
gdb/spu-tdep.c
@@ -1966,7 +1966,9 @@ spu_catch_start (struct objfile *objfile)
1966
struct symbol *sym;
1967
struct symtab_and_line sal;
1968
1969
- sym = block_lookup_symbol (block, "main", VAR_DOMAIN);
+ sym = block_lookup_symbol (block, "main",
1970
+ symbol_name_match_type::SEARCH_NAME,
1971
+ VAR_DOMAIN);
1972
if (sym)
1973
{
1974
fixup_symbol_section (sym, objfile);
0 commit comments