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

Side by Side Diff: bfd/elfcode.h

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 | « bfd/elf64-x86-64.c ('k') | bfd/elflink.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
1 /* ELF executable support for BFD. 1 /* ELF executable support for BFD.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 Free Software Foundation, Inc. 4 Free Software Foundation, Inc.
5 5
6 Written by Fred Fish @ Cygnus Support, from information published 6 Written by Fred Fish @ Cygnus Support, from information published
7 in "UNIX System V Release 4, Programmers Guide: ANSI C and 7 in "UNIX System V Release 4, Programmers Guide: ANSI C and
8 Programming Support Tools". Sufficient support for gdb. 8 Programming Support Tools". Sufficient support for gdb.
9 9
10 Rewritten by Mark Eichin @ Cygnus Support, from information 10 Rewritten by Mark Eichin @ Cygnus Support, from information
11 published in "System V Application Binary Interface", chapters 4 11 published in "System V Application Binary Interface", chapters 4
12 and 5, as well as the various "Processor Supplement" documents 12 and 5, as well as the various "Processor Supplement" documents
13 derived from it. Added support for assembler and other object file 13 derived from it. Added support for assembler and other object file
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 /* Seek to the section header table in the file. */ 623 /* Seek to the section header table in the file. */
624 if (bfd_seek (abfd, (file_ptr) where, SEEK_SET) != 0) 624 if (bfd_seek (abfd, (file_ptr) where, SEEK_SET) != 0)
625 goto got_no_match; 625 goto got_no_match;
626 626
627 /* Read the first section header at index 0, and convert to internal 627 /* Read the first section header at index 0, and convert to internal
628 form. */ 628 form. */
629 if (bfd_bread (&x_shdr, sizeof x_shdr, abfd) != sizeof (x_shdr)) 629 if (bfd_bread (&x_shdr, sizeof x_shdr, abfd) != sizeof (x_shdr))
630 goto got_no_match; 630 goto got_no_match;
631 elf_swap_shdr_in (abfd, &x_shdr, &i_shdr); 631 elf_swap_shdr_in (abfd, &x_shdr, &i_shdr);
632 632

error: old chunk mismatch

OLDNEW
« no previous file with comments | « bfd/elf64-x86-64.c ('k') | bfd/elflink.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698