From a618eb5c4ece05995c378b02ae07428adfeae74c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Sun, 23 May 2004 14:45:04 +0000 Subject: [PATCH] remove accidentally committed debug spew --- binfile.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/binfile.c b/binfile.c index 27d88eb2..4b5535e9 100644 --- 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; }