diff options
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-cplus-types.c | 2 | ||||
-rw-r--r-- | gdb/compile/compile-object-load.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/compile/compile-cplus-types.c b/gdb/compile/compile-cplus-types.c index f92091a..75b226d 100644 --- a/gdb/compile/compile-cplus-types.c +++ b/gdb/compile/compile-cplus-types.c @@ -383,7 +383,7 @@ compile_cplus_instance::new_scope (const char *type_name, struct type *type) { scope_component comp = { - decl_name (type->name ()).get (), + decl_name (type->name ()).get (), lookup_symbol (type->name (), block (), VAR_DOMAIN, nullptr) }; scope.push_back (comp); diff --git a/gdb/compile/compile-object-load.c b/gdb/compile/compile-object-load.c index bde3b74..13a8639 100644 --- a/gdb/compile/compile-object-load.c +++ b/gdb/compile/compile-object-load.c @@ -208,7 +208,7 @@ link_callbacks_multiple_definition (struct bfd_link_info *link_info, static void link_callbacks_warning (struct bfd_link_info *link_info, const char *xwarning, - const char *symbol, bfd *abfd, asection *section, + const char *symbol, bfd *abfd, asection *section, bfd_vma address) { warning (_("Compiled module \"%s\" section \"%s\": warning: %s"), @@ -621,7 +621,7 @@ compile_object_load (const compile_file_names &file_names, gdb_bfd_ref_ptr abfd (gdb_bfd_open (filename.get (), gnutarget)); if (abfd == NULL) error (_("\"%s\": could not open as compiled module: %s"), - filename.get (), bfd_errmsg (bfd_get_error ())); + filename.get (), bfd_errmsg (bfd_get_error ())); if (!bfd_check_format_matches (abfd.get (), bfd_object, &matching)) error (_("\"%s\": not in loadable format: %s"), |