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

Side by Side Diff: bfd/som.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 | « bfd/som.h ('k') | bfd/sparclinux.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 /* bfd back-end for HP PA-RISC SOM objects. 1 /* bfd back-end for HP PA-RISC SOM objects.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
4 Free Software Foundation, Inc. 4 2012 Free Software Foundation, Inc.
5 5
6 Contributed by the Center for Software Science at the 6 Contributed by the Center for Software Science at the
7 University of Utah. 7 University of Utah.
8 8
9 This file is part of BFD, the Binary File Descriptor library. 9 This file is part of BFD, the Binary File Descriptor library.
10 10
11 This program is free software; you can redistribute it and/or modify 11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by 12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or 13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version. 14 (at your option) any later version.
15 15
16 This program is distributed in the hope that it will be useful, 16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of 17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details. 19 GNU General Public License for more details.
20 20
21 You should have received a copy of the GNU General Public License 21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software 22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */ 24 02110-1301, USA. */
25 25
26 #include "sysdep.h"
26 #include "alloca-conf.h" 27 #include "alloca-conf.h"
27 #include "sysdep.h"
28 #include "bfd.h" 28 #include "bfd.h"
29 29
30 #include "libbfd.h" 30 #include "libbfd.h"
31 #include "som.h" 31 #include "som.h"
32 #include "safe-ctype.h" 32 #include "safe-ctype.h"
33 #include "som/reloc.h" 33 #include "som/reloc.h"
34 #include "aout/ar.h" 34 #include "aout/ar.h"
35 35
36 static bfd_reloc_status_type hppa_som_reloc 36 static bfd_reloc_status_type hppa_som_reloc
37 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **); 37 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
(...skipping 6766 matching lines...) Expand 10 before | Expand all | Expand 10 after
6804 BFD_JUMP_TABLE_RELOCS (som), 6804 BFD_JUMP_TABLE_RELOCS (som),
6805 BFD_JUMP_TABLE_WRITE (som), 6805 BFD_JUMP_TABLE_WRITE (som),
6806 BFD_JUMP_TABLE_LINK (som), 6806 BFD_JUMP_TABLE_LINK (som),
6807 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), 6807 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),
6808 6808
6809 NULL, 6809 NULL,
6810 6810
6811 NULL 6811 NULL
6812 }; 6812 };
6813 6813
OLDNEW
« no previous file with comments | « bfd/som.h ('k') | bfd/sparclinux.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698