]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* ppc.h (PPC_OPCODE_POWER4, PPC_OPCODE_NOPOWER4): Define.
authorAlan Modra <amodra@gmail.com>
Mon, 25 Feb 2002 05:03:12 +0000 (05:03 +0000)
committerAlan Modra <amodra@gmail.com>
Mon, 25 Feb 2002 05:03:12 +0000 (05:03 +0000)
include/opcode/ChangeLog
include/opcode/ppc.h

index 9703eeee117f0559994a4294fbca1923e49208d5..9d143c7a922771ec6a6b2dcfc8320c7e84141b5e 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-25  Alan Modra  <amodra@bigpond.net.au>
+
+       * ppc.h (PPC_OPCODE_POWER4, PPC_OPCODE_NOPOWER4): Define.
+
 Mon Feb 18 17:26:10 CET 2002  Jan Hubicka  <jh@suse.cz>
 
        * i386.h (push,pop): Fix Reg64 to WordReg to allow 16bit operands.
index dc3983ec0a14a920ebbc0dccab31a94fc20fb018..f7db66f63a8b455bc54f1e0c2f3912149c6b07a0 100644 (file)
@@ -1,5 +1,6 @@
 /* ppc.h -- Header file for PowerPC opcode table
-   Copyright 1994, 1995, 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1999, 2000, 2001, 2002
+   Free Software Foundation, Inc.
    Written by Ian Lance Taylor, Cygnus Support
 
 This file is part of GDB, GAS, and the GNU binutils.
@@ -100,6 +101,12 @@ extern const int powerpc_num_opcodes;
 /* Opcode is only supported by 64-bit PowerPC BookE processor.  */
 #define PPC_OPCODE_BOOKE64 (010000)
 
+/* Opcode is only supported by Power4 architecture.  */
+#define PPC_OPCODE_POWER4 (020000)
+
+/* Opcode isn't supported by Power4 architecture.  */
+#define PPC_OPCODE_NOPOWER4 (040000)
+
 /* A macro to extract the major opcode from an instruction.  */
 #define PPC_OP(i) (((i) >> 26) & 0x3f)
 \f