| OLD | NEW |
| 1 /* ppc-opc.c -- PowerPC opcode list | 1 /* ppc-opc.c -- PowerPC opcode list |
| 2 Copyright 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004, | 2 Copyright 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004, |
| 3 2005, 2006, 2007, 2008, 2009, 2010, 2011 | 3 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 |
| 4 Free Software Foundation, Inc. | 4 Free Software Foundation, Inc. |
| 5 Written by Ian Lance Taylor, Cygnus Support | 5 Written by Ian Lance Taylor, Cygnus Support |
| 6 | 6 |
| 7 This file is part of the GNU opcodes library. | 7 This file is part of the GNU opcodes library. |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or modify | 9 This library is free software; you can redistribute it and/or modify |
| 10 it under the terms of the GNU General Public License as published by | 10 it under the terms of the GNU General Public License as published by |
| 11 the Free Software Foundation; either version 3, or (at your option) | 11 the Free Software Foundation; either version 3, or (at your option) |
| 12 any later version. | 12 any later version. |
| 13 | 13 |
| 14 It is distributed in the hope that it will be useful, but WITHOUT | 14 It is distributed in the hope that it will be useful, but WITHOUT |
| 15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | 15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | 16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
| 17 License for more details. | 17 License for more details. |
| 18 | 18 |
| 19 You should have received a copy of the GNU General Public License | 19 You should have received a copy of the GNU General Public License |
| 20 along with this file; see the file COPYING. If not, write to the | 20 along with this file; see the file COPYING. If not, write to the |
| 21 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, | 21 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, |
| 22 MA 02110-1301, USA. */ | 22 MA 02110-1301, USA. */ |
| 23 | 23 |
| 24 #include "sysdep.h" |
| 24 #include <stdio.h> | 25 #include <stdio.h> |
| 25 #include "sysdep.h" | |
| 26 #include "opcode/ppc.h" | 26 #include "opcode/ppc.h" |
| 27 #include "opintl.h" | 27 #include "opintl.h" |
| 28 | 28 |
| 29 /* This file holds the PowerPC opcode table. The opcode table | 29 /* This file holds the PowerPC opcode table. The opcode table |
| 30 includes almost all of the extended instruction mnemonics. This | 30 includes almost all of the extended instruction mnemonics. This |
| 31 permits the disassembler to use them, and simplifies the assembler | 31 permits the disassembler to use them, and simplifies the assembler |
| 32 logic, at the cost of increasing the table size. The table is | 32 logic, at the cost of increasing the table size. The table is |
| 33 strictly constant data, so the compiler should be able to put it in | 33 strictly constant data, so the compiler should be able to put it in |
| 34 the .text section. | 34 the .text section. |
| 35 | 35 |
| 36 This file also holds the operand table. All knowledge about | 36 This file also holds the operand table. All knowledge about |
| 37 inserting operands into instructions and vice-versa is kept in this | 37 inserting operands into instructions and vice-versa is kept in this |
| 38 file. */ | 38 file. */ |
error: old chunk mismatch |
None
| OLD | NEW |