Add usage to printf command
[deliverable/binutils-gdb.git] / gdb / c-valprint.c
index 653fed657a979f7ffaae615c27a4ff0a983b1140..c4c0918e26afe58dc488f0d1ba2a39af4b1bddd7 100644 (file)
@@ -1,6 +1,6 @@
 /* Support for printing C values for GDB, the GNU debugger.
 
-   Copyright (C) 1986-2017 Free Software Foundation, Inc.
+   Copyright (C) 1986-2018 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -198,14 +198,17 @@ print_unpacked_pointer (struct type *type, struct type *elttype,
          struct symbol *wsym = NULL;
          struct type *wtype;
          struct block *block = NULL;
-         struct field_of_this_result is_this_fld;
 
          if (want_space)
            fputs_filtered (" ", stream);
 
          if (msymbol.minsym != NULL)
-           wsym = lookup_symbol (MSYMBOL_LINKAGE_NAME(msymbol.minsym), block,
-                                 VAR_DOMAIN, &is_this_fld).symbol;
+           {
+             const char *search_name
+               = MSYMBOL_SEARCH_NAME (msymbol.minsym);
+             wsym = lookup_symbol_search_name (search_name, block,
+                                               VAR_DOMAIN).symbol;
+           }
 
          if (wsym)
            {
This page took 0.025516 seconds and 4 git commands to generate.