Add constructor to bound_minimal_symbol
authorTom Tromey <tromey@adacore.com>
Tue, 15 Feb 2022 16:04:01 +0000 (09:04 -0700)
committerTom Tromey <tromey@adacore.com>
Fri, 18 Feb 2022 19:58:35 +0000 (12:58 -0700)
This adds a constructor to bound_minimal_symbol, to avoid a build
failure with clang that Simon pointed out.

I also took the opportunity to remove some redundant initializations,
and to change one use of push_back to emplace_back, as suggested by
Simon.

gdb/breakpoint.c
gdb/hppa-tdep.c
gdb/linespec.c
gdb/minsyms.c
gdb/minsyms.h
gdb/psymtab.c

index 9ff2bf82374d0c3be900b4edfd681c76553772f5..a3cfeea6989aa0c1ae6fb50ace7e21d384bac2de 100644 (file)
@@ -3171,10 +3171,10 @@ static const char *const longjmp_names[] =
 struct breakpoint_objfile_data
 {
   /* Minimal symbol for "_ovly_debug_event" (if any).  */
-  struct bound_minimal_symbol overlay_msym {};
+  struct bound_minimal_symbol overlay_msym;
 
   /* Minimal symbol(s) for "longjmp", "siglongjmp", etc. (if any).  */
-  struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES] {};
+  struct bound_minimal_symbol longjmp_msym[NUM_LONGJMP_NAMES];
 
   /* True if we have looked for longjmp probes.  */
   int longjmp_searched = 0;
@@ -3184,10 +3184,10 @@ struct breakpoint_objfile_data
   std::vector<probe *> longjmp_probes;
 
   /* Minimal symbol for "std::terminate()" (if any).  */
-  struct bound_minimal_symbol terminate_msym {};
+  struct bound_minimal_symbol terminate_msym;
 
   /* Minimal symbol for "_Unwind_DebugHook" (if any).  */
-  struct bound_minimal_symbol exception_msym {};
+  struct bound_minimal_symbol exception_msym;
 
   /* True if we have looked for exception probes.  */
   int exception_searched = 0;
index 7734115b744c16284c52d88c75484653d6988b8e..760cb1bea13f23e0b619b2dc3629abd7ab82bd40 100644 (file)
@@ -2531,7 +2531,7 @@ struct bound_minimal_symbol
 hppa_lookup_stub_minimal_symbol (const char *name,
                                 enum unwind_stub_types stub_type)
 {
-  struct bound_minimal_symbol result = { NULL, NULL };
+  struct bound_minimal_symbol result;
 
   for (objfile *objfile : current_program_space->objfiles ())
     {
index 9e21df76efad13bbf0c8ee59d0225af1c72293b6..707a3a2586a2ce6d80e5d2f607119befacb78acd 100644 (file)
@@ -4273,8 +4273,7 @@ add_minsym (struct minimal_symbol *minsym, struct objfile *objfile,
   if (!list_mode && !msymbol_is_function (objfile, minsym))
     return;
 
-  struct bound_minimal_symbol mo = {minsym, objfile};
-  msyms->push_back (mo);
+  msyms->emplace_back (minsym, objfile);
   return;
 }
 
index 9a44e4bcf6dd36d148b40d860e4be9f740f14e02..4eab8daabeccc05fdafdabf2223912bc784b3a2a 100644 (file)
@@ -230,13 +230,13 @@ add_minsym_to_demangled_hash_table (struct minimal_symbol *sym,
 struct found_minimal_symbols
 {
   /* External symbols are best.  */
-  bound_minimal_symbol external_symbol {};
+  bound_minimal_symbol external_symbol;
 
   /* File-local symbols are next best.  */
-  bound_minimal_symbol file_symbol {};
+  bound_minimal_symbol file_symbol;
 
   /* Symbols for shared library trampolines are next best.  */
-  bound_minimal_symbol trampoline_symbol {};
+  bound_minimal_symbol trampoline_symbol;
 
   /* Called when a symbol name matches.  Check if the minsym is a
      better type than what we had already found, and record it in one
@@ -601,8 +601,8 @@ struct bound_minimal_symbol
 lookup_minimal_symbol_text (const char *name, struct objfile *objf)
 {
   struct minimal_symbol *msymbol;
-  struct bound_minimal_symbol found_symbol = { NULL, NULL };
-  struct bound_minimal_symbol found_file_symbol = { NULL, NULL };
+  struct bound_minimal_symbol found_symbol;
+  struct bound_minimal_symbol found_file_symbol;
 
   unsigned int hash = msymbol_hash (name) % MINIMAL_SYMBOL_HASH_SIZE;
 
index ed31d32483a483364307cf9f4bdafbb616b84f73..519702494ed57f11d6b07e7646743fdf91ed9a60 100644 (file)
@@ -28,6 +28,14 @@ struct type;
 
 struct bound_minimal_symbol
 {
+  bound_minimal_symbol (struct minimal_symbol *msym, struct objfile *objf)
+    : minsym (msym),
+      objfile (objf)
+  {
+  }
+
+  bound_minimal_symbol () = default;
+
   /* The minimal symbol that was found, or NULL if no minimal symbol
      was found.  */
 
index ac5009aec37f73bc172e5b3dd3c3f2bffd85dc5c..2aa1d18fed30a63e088d06526c714b1ef2489e54 100644 (file)
@@ -1577,7 +1577,7 @@ maintenance_print_psymbols (const char *args, int from_tty)
 
          if (address_arg != NULL)
            {
-             struct bound_minimal_symbol msymbol = { NULL, NULL };
+             struct bound_minimal_symbol msymbol;
 
              /* We don't assume each pc has a unique objfile (this is for
                 debugging).  */