Remove MULTI_OBJFILE_P
[deliverable/binutils-gdb.git] / gdb / solib-svr4.h
index a9b09aa56c8f978df822adaca22f41682e8ff179..a051e70b79baead20f3272d532f566d360309a3e 100644 (file)
@@ -1,6 +1,6 @@
 /* Handle shared libraries for GDB, the GNU Debugger.
 
-   Copyright (C) 2000-2017 Free Software Foundation, Inc.
+   Copyright (C) 2000-2019 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -38,14 +38,14 @@ struct lm_info_svr4 : public lm_info_base
      It is commonly the same value.  It is cached as we want to warn about
      the difference and compute it only once.  L_ADDR is valid
      iff L_ADDR_P.  */
-  CORE_ADDR l_addr, l_addr_inferior;
-  unsigned int l_addr_p : 1;
+  CORE_ADDR l_addr = 0, l_addr_inferior = 0;
+  bool l_addr_p = false;
 
   /* The target location of lm.  */
-  CORE_ADDR lm_addr;
+  CORE_ADDR lm_addr = 0;
 
   /* Values read in from inferior's fields of the same name.  */
-  CORE_ADDR l_ld, l_next, l_prev, l_name;
+  CORE_ADDR l_ld = 0, l_next = 0, l_prev = 0, l_name = 0;
 };
 
 /* Critical offsets and sizes which describe struct r_debug and
This page took 0.026037 seconds and 4 git commands to generate.