diff options
author | Tom Tromey <tromey@redhat.com> | 2012-03-15 14:06:20 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-03-15 14:06:20 +0000 |
commit | 95cbceff9926e26bf718f9373fcde2981e09b748 (patch) | |
tree | 9657f2bcc10b78614a6c13553264c4b6cc7fe265 | |
parent | b240011aba98dd8a0c4736a51afcea38af814200 (diff) | |
download | gdb-95cbceff9926e26bf718f9373fcde2981e09b748.zip gdb-95cbceff9926e26bf718f9373fcde2981e09b748.tar.gz gdb-95cbceff9926e26bf718f9373fcde2981e09b748.tar.bz2 |
* d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
iterate_over_symbols.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/d-lang.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9e688e9..fccf667 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-03-15 Tom Tromey <tromey@redhat.com> + + * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to + iterate_over_symbols. + 2012-03-14 Doug Evans <dje@google.com> * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr, diff --git a/gdb/d-lang.c b/gdb/d-lang.c index 9a8cf52..121040a 100644 --- a/gdb/d-lang.c +++ b/gdb/d-lang.c @@ -274,7 +274,7 @@ static const struct language_defn d_language_defn = default_pass_by_reference, c_get_string, NULL, /* la_get_symbol_name_cmp */ - NULL, + iterate_over_symbols, LANG_MAGIC }; |