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

Side by Side Diff: bfd/coff-ppc.c

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 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/coff-mips.c ('k') | bfd/coff-rs6000.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 /* BFD back-end for PowerPC Microsoft Portable Executable files. 1 /* BFD back-end for PowerPC Microsoft Portable Executable files.
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 2012 Free Software Foundation, Inc. 4 2012 Free Software Foundation, Inc.
5 5
6 Original version pieced together by Kim Knuttila (krk@cygnus.com) 6 Original version pieced together by Kim Knuttila (krk@cygnus.com)
7 7
8 There is nothing new under the sun. This file draws a lot on other 8 There is nothing new under the sun. This file draws a lot on other
9 coff files, in particular, those for the rs/6000, alpha, mips, and 9 coff files, in particular, those for the rs/6000, alpha, mips, and
10 intel backends, and the PE work for the arm. 10 intel backends, and the PE work for the arm.
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 /* Masks to isolate above values in IMAGE_RELOCATION.Type. */ 291 /* Masks to isolate above values in IMAGE_RELOCATION.Type. */
292 #define IMAGE_REL_PPC_TYPEMASK 0x00FF 292 #define IMAGE_REL_PPC_TYPEMASK 0x00FF
293 #define IMAGE_REL_PPC_FLAGMASK 0x0F00 293 #define IMAGE_REL_PPC_FLAGMASK 0x0F00
294 294
295 #define EXTRACT_TYPE(x) ((x) & IMAGE_REL_PPC_TYPEMASK) 295 #define EXTRACT_TYPE(x) ((x) & IMAGE_REL_PPC_TYPEMASK)
296 #define EXTRACT_FLAGS(x) ((x) & IMAGE_REL_PPC_FLAGMASK) 296 #define EXTRACT_FLAGS(x) ((x) & IMAGE_REL_PPC_FLAGMASK)
297 #define EXTRACT_JUNK(x) \ 297 #define EXTRACT_JUNK(x) \
298 ((x) & ~(IMAGE_REL_PPC_TYPEMASK | IMAGE_REL_PPC_FLAGMASK)) 298 ((x) & ~(IMAGE_REL_PPC_TYPEMASK | IMAGE_REL_PPC_FLAGMASK))
299 299
300 300

error: old chunk mismatch

OLDNEW
« no previous file with comments | « bfd/coff-mips.c ('k') | bfd/coff-rs6000.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698