diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-12-09 14:53:25 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-12-09 14:53:25 +0000 |
commit | 2480cfa0400ce5cc1d7fe3d811e8e3288c22f78f (patch) | |
tree | fd80326a571834d5e06546807649653b4140ecb5 /gdb/machoread.c | |
parent | 9cce227f8cd3081662b208e0067b23547afa5a83 (diff) | |
download | gdb-2480cfa0400ce5cc1d7fe3d811e8e3288c22f78f.zip gdb-2480cfa0400ce5cc1d7fe3d811e8e3288c22f78f.tar.gz gdb-2480cfa0400ce5cc1d7fe3d811e8e3288c22f78f.tar.bz2 |
2009-12-03 Tristan Gingold <gingold@adacore.com>
* machoread.c (macho_symfile_read): Use symbol_file_add_separate
to add dsym files.
Diffstat (limited to 'gdb/machoread.c')
-rw-r--r-- | gdb/machoread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/machoread.c b/gdb/machoread.c index 5763cef..d7d53bb 100644 --- a/gdb/machoread.c +++ b/gdb/machoread.c @@ -641,11 +641,11 @@ macho_symfile_read (struct objfile *objfile, int symfile_flags) VEC_free (oso_el, oso_vector); oso_vector = NULL; - /* Now recurse: read dwarf from dsym. */ - symbol_file_add_from_bfd (dsym_bfd, 0, NULL, 0); + /* Add the dsym file as a separate file. */ + symbol_file_add_separate (dsym_bfd, symfile_flags, objfile); /* Don't try to read dwarf2 from main file or shared libraries. */ - return; + return; } } |