aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Biesinger <cbiesinger@google.com>2019-10-25 14:46:40 -0500
committerChristian Biesinger <cbiesinger@google.com>2019-10-25 14:47:19 -0500
commit92174eeae843d8295791b9d9f03a7a291cc3c694 (patch)
treedeeee56b99fe037cb807823027a5f0ad3668bd27
parent5396ae1717ade2dbbdb73790eafcdd885045860b (diff)
downloadgdb-92174eeae843d8295791b9d9f03a7a291cc3c694.zip
gdb-92174eeae843d8295791b9d9f03a7a291cc3c694.tar.gz
gdb-92174eeae843d8295791b9d9f03a7a291cc3c694.tar.bz2
Revert unintentional change in symtab.c
In the previous commit, I accidentally changed the wrong line; this reverts it to what it should be. gdb/ChangeLog: 2019-10-25 Christian Biesinger <cbiesinger@google.com> * symtab.c (symbol_set_names): Revert unintentional change in the Ada case. Change-Id: I9abf174927687e74c7435bd4607aab7f248c6e79
-rw-r--r--gdb/symtab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index adf9e08..79c5fde 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -839,7 +839,7 @@ symbol_set_names (struct general_symbol_info *gsymbol,
{
/* In Ada, we do the symbol lookups using the mangled name, so
we can save some space by not storing the demangled name. */
- if (!copy_name && linkage_name_copy == linkage_name)
+ if (!copy_name)
gsymbol->name = linkage_name;
else
{