Revert unintentional change in symtab.c
authorChristian Biesinger <cbiesinger@google.com>
Fri, 25 Oct 2019 19:46:40 +0000 (14:46 -0500)
committerChristian Biesinger <cbiesinger@google.com>
Fri, 25 Oct 2019 19:47:19 +0000 (14:47 -0500)
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

gdb/symtab.c

index adf9e08067403d0188a01455921694d698b69dd7..79c5fde43c754c9454b1e65d14ff9f1043db9291 100644 (file)
@@ -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
        {
This page took 0.029717 seconds and 4 git commands to generate.