Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: gdb/mipsread.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/mips-tdep.c ('k') | gdb/mn10300-tdep.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Read a symbol table in MIPS' format (Third-Eye). 1 /* Read a symbol table in MIPS' format (Third-Eye).
2 2
3 Copyright (C) 1986-1987, 1989-1996, 1998-2001, 2003-2004, 2007-2012 3 Copyright (C) 1986-1987, 1989-1996, 1998-2001, 2003-2004, 2007-2012
4 Free Software Foundation, Inc. 4 Free Software Foundation, Inc.
5 5
6 Contributed by Alessandro Forin (af@cs.cmu.edu) at CMU. Major work 6 Contributed by Alessandro Forin (af@cs.cmu.edu) at CMU. Major work
7 by Per Bothner, John Gilmore and Ian Lance Taylor at Cygnus Support. 7 by Per Bothner, John Gilmore and Ian Lance Taylor at Cygnus Support.
8 8
9 This file is part of GDB. 9 This file is part of GDB.
10 10
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 bfd_target_ecoff_flavour, 394 bfd_target_ecoff_flavour,
395 mipscoff_new_init, /* init anything gbl to entire symtab */ 395 mipscoff_new_init, /* init anything gbl to entire symtab */
396 mipscoff_symfile_init, /* read initial info, setup for sym_read() */ 396 mipscoff_symfile_init, /* read initial info, setup for sym_read() */
397 mipscoff_symfile_read, /* read a symbol file into symtab */ 397 mipscoff_symfile_read, /* read a symbol file into symtab */
398 NULL, /* sym_read_psymbols */ 398 NULL, /* sym_read_psymbols */
399 mipscoff_symfile_finish, /* finished with file, cleanup */ 399 mipscoff_symfile_finish, /* finished with file, cleanup */
400 default_symfile_offsets, /* dummy FIXME til implem sym reloc */ 400 default_symfile_offsets, /* dummy FIXME til implem sym reloc */
401 default_symfile_segments, /* Get segment information from a file. */ 401 default_symfile_segments, /* Get segment information from a file. */
402 NULL, 402 NULL,
403 default_symfile_relocate, /* Relocate a debug section. */ 403 default_symfile_relocate, /* Relocate a debug section. */
404 NULL, /* sym_probe_fns */
404 &psym_functions 405 &psym_functions
405 }; 406 };
406 407
407 /* Provide a prototype to silence -Wmissing-prototypes. */ 408 /* Provide a prototype to silence -Wmissing-prototypes. */
408 void _initialize_mipsread (void); 409 void _initialize_mipsread (void);
409 410
410 void 411 void
411 _initialize_mipsread (void) 412 _initialize_mipsread (void)
412 { 413 {
413 add_symtab_fns (&ecoff_sym_fns); 414 add_symtab_fns (&ecoff_sym_fns);
414 } 415 }
OLDNEW
« no previous file with comments | « gdb/mips-tdep.c ('k') | gdb/mn10300-tdep.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698