aboutsummaryrefslogtreecommitdiff
path: root/gdb/psymtab.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2013-03-14 16:36:27 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2013-03-14 16:36:27 +0000
commit288e77a7ac3043d465464cd670646a90709f5e96 (patch)
tree4b776bfeea68bd656e181c0363f863c03d086f25 /gdb/psymtab.c
parent9e6f38113349b398fc4d08d90a1f137f8872b46c (diff)
downloadfsf-binutils-gdb-288e77a7ac3043d465464cd670646a90709f5e96.zip
fsf-binutils-gdb-288e77a7ac3043d465464cd670646a90709f5e96.tar.gz
fsf-binutils-gdb-288e77a7ac3043d465464cd670646a90709f5e96.tar.bz2
gdb/
* dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after any successful compare_filenames_for_search or FILENAME_CMP. * psymtab.c (partial_map_symtabs_matching_filename): Likewise. * symtab.c (iterate_over_some_symtabs): Likewise.
Diffstat (limited to 'gdb/psymtab.c')
-rw-r--r--gdb/psymtab.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c
index 2965e9f..7b118c5 100644
--- a/gdb/psymtab.c
+++ b/gdb/psymtab.c
@@ -183,6 +183,7 @@ partial_map_symtabs_matching_filename (struct objfile *objfile,
if (partial_map_expand_apply (objfile, name, real_path,
pst, callback, data))
return 1;
+ continue;
}
/* Before we invoke realpath, which can get expensive when many
@@ -196,6 +197,7 @@ partial_map_symtabs_matching_filename (struct objfile *objfile,
if (partial_map_expand_apply (objfile, name, real_path,
pst, callback, data))
return 1;
+ continue;
}
/* If the user gave us an absolute path, try to find the file in
@@ -209,6 +211,7 @@ partial_map_symtabs_matching_filename (struct objfile *objfile,
if (partial_map_expand_apply (objfile, name, real_path,
pst, callback, data))
return 1;
+ continue;
}
}
}