aboutsummaryrefslogtreecommitdiff
path: root/include/opcode/ppc.h
diff options
context:
space:
mode:
authorcvs2svn <>2010-02-18 10:56:34 +0000
committercvs2svn <>2010-02-18 10:56:34 +0000
commite16f5e7bd9ce1173e035ddd7760236ed36b5a12d (patch)
treed93db5f4766180c5e3da71ac6fc78d16b7a78e97 /include/opcode/ppc.h
parent3b5354fd3bd55d5a4598f845e846e1c7f34c65d9 (diff)
downloadnewlib-sid-snapshot-20100201.zip
newlib-sid-snapshot-20100201.tar.gz
newlib-sid-snapshot-20100201.tar.bz2
This commit was manufactured by cvs2svn to create tag 'sid-sid-snapshot-20100201
snapshot-20100201'. Sprout from gdb_7_1-branch 2010-02-18 10:56:28 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch 'gdb_7_1-branch'.' Cherrypick from master 2010-01-31 18:40:33 UTC Kaveh Ghazi <ghazi@sourceware.org> ' * configure.ac: Add "recommended" version checks for GMP/MPC.': ChangeLog Makefile.in Makefile.tpl config/ChangeLog configure configure.ac include/ChangeLog include/demangle.h include/elf/ChangeLog include/elf/arm.h include/elf/common.h include/elf/sparc.h include/opcode/ChangeLog include/opcode/ppc.h Delete: config/elf.m4 djunpack.bat include/vms/ChangeLog include/vms/dmt.h include/vms/dst.h include/vms/eeom.h include/vms/egps.h include/vms/egsd.h include/vms/egst.h include/vms/egsy.h include/vms/eiaf.h include/vms/eicp.h include/vms/eiha.h include/vms/eihd.h include/vms/eihi.h include/vms/eihs.h include/vms/eihvn.h include/vms/eisd.h include/vms/emh.h include/vms/eobjrec.h include/vms/esdf.h include/vms/esrf.h include/vms/etir.h include/vms/shl.h texinfo/texinfo.tex
Diffstat (limited to 'include/opcode/ppc.h')
-rw-r--r--include/opcode/ppc.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h
index e4b624a..1dc2f1d 100644
--- a/include/opcode/ppc.h
+++ b/include/opcode/ppc.h
@@ -1,6 +1,6 @@
/* ppc.h -- Header file for PowerPC opcode table
Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
- 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+ 2007, 2008, 2009 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is part of GDB, GAS, and the GNU binutils.
@@ -168,14 +168,11 @@ extern const int powerpc_num_opcodes;
#define PPC_OPCODE_VSX 0x80000000
/* Opcode is supported by A2. */
-#define PPC_OPCODE_A2 0x100000000ULL
+#define PPC_OPCODE_A2 0x100000000ULL
/* Opcode is supported by PowerPC 476 processor. */
#define PPC_OPCODE_476 0x200000000ULL
-/* Opcode is supported by AppliedMicro Titan core */
-#define PPC_OPCODE_TITAN 0x400000000ULL
-
/* A macro to extract the major opcode from an instruction. */
#define PPC_OP(i) (((i) >> 26) & 0x3f)