| OLD | NEW |
| 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 Loading... |
| 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 |
None
| OLD | NEW |