remove accidentally committed debug spew
authorSøren Sandmann Pedersen <ssp@src.gnome.org>
Sun, 23 May 2004 14:45:04 +0000 (14:45 +0000)
committerSøren Sandmann Pedersen <ssp@src.gnome.org>
Sun, 23 May 2004 14:45:04 +0000 (14:45 +0000)
binfile.c

index 27d88eb..4b5535e 100644 (file)
--- a/binfile.c
+++ b/binfile.c
@@ -330,7 +330,10 @@ read_symbols (BinFile *bf)
            
            symbol.address = bfd_asymbol_value (bfd_symbols[i]) - load_address;
            name = demangle (bfd, bfd_asymbol_name (bfd_symbols[i]));
+#if 0
            symbol.name = g_strdup_printf ("%s (%s)", name, bf->filename);
+#endif
+           symbol.name = g_strdup ("%s", name);
            free (name);
            
            g_array_append_vals (symbols, &symbol, 1);
@@ -418,10 +421,12 @@ bin_file_lookup_symbol (BinFile    *bf,
      */
     if (strcmp (result->name, "call_gmon_start") == 0)
        return &(bf->undefined);
+#if 0
     else if (strncmp (result->name, "__do_global_ctors_aux", strlen ("__do_global_ctors_aux")) == 0)
     {
        g_print ("ctors: %p, pos: %p\n", address, result->address);
     }
+#endif
     
     return result;
 }