+2014-08-11  Doug Evans  <dje@google.com>
+
+       * solib.c (solib_read_symbols): Delete "Loaded symbols for ..."
+       message, it is redundant with "Reading symbols from ..." message.
+
 2014-08-10  Doug Evans  <xdje42@gmail.com>
 
        * linux-nat.c (linux_nat_thread_address_space): Delete dead code.
 
 int
 solib_read_symbols (struct so_list *so, int flags)
 {
-  const int from_tty = flags & SYMFILE_VERBOSE;
-
   if (so->symbols_loaded)
     {
       /* If needed, we've already warned in our caller.  */
                                            " library symbols for %s:\n"),
                           so->so_name);
       else
-       {
-         if (print_symbol_loading_p (from_tty, 0, 1))
-           printf_unfiltered (_("Loaded symbols for %s\n"), so->so_name);
-         so->symbols_loaded = 1;
-       }
+       so->symbols_loaded = 1;
       return 1;
     }
 
 
+2014-08-11  Doug Evans  <dje@google.com>
+
+       * gdb.base/print-symbol-loading.exp (test_load_core): Update.
+       (test_load_shlib): Update.
+
 2014-08-09  Yao Qi  <yao@codesourcery.com>
 
        * gdb.base/display.exp: Invoke is_address_zero_readable.
 
            }
            "full" {
                gdb_test "set solib-search-path [file dirname ${binfile_lib}]" \
-                   "Reading symbols from.*Loaded symbols for.*" \
+                   "Reading symbols from.*" \
                    ${test_name}
            }
        }
            }
            "full" {
                gdb_test "sharedlibrary .*" \
-                   "Reading symbols from.*Loaded symbols for.*" \
+                   "Reading symbols from.*" \
                    ${test_name}
            }
        }