diff options
author | cvs2svn <> | 2002-03-11 00:01:12 +0000 |
---|---|---|
committer | cvs2svn <> | 2002-03-11 00:01:12 +0000 |
commit | 24d0ef8fa9054f81b2280bbb206a673c1959f4cb (patch) | |
tree | 79ad3fe4c8aeea7f45709e2d6e3da35bd8d30d9b /include/opcode/ppc.h | |
parent | 34124a07180b9c8c7479517436c49292cfd12dcd (diff) | |
download | cygnal-24d0ef8fa9054f81b2280bbb206a673c1959f4cb.tar.gz cygnal-24d0ef8fa9054f81b2280bbb206a673c1959f4cb.tar.bz2 cygnal-24d0ef8fa9054f81b2280bbb206a673c1959f4cb.zip |
This commit was manufactured by cvs2svn to create branch 'gdb_5_2-branch'.
Sprout from binutils-2_12-branch 2002-02-09 22:54:17 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch 'binutils-'
Cherrypick from master 2002-03-01 00:52:59 UTC Alexandre Oliva <aoliva@redhat.com> '* configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for':
ChangeLog
Makefile.in
config.guess
config.sub
configure.in
etc/ChangeLog
etc/fdl.texi
etc/make-stds.texi
etc/standards.texi
include/ChangeLog
include/bfdlink.h
include/elf/ChangeLog
include/elf/m68k.h
include/elf/ppc.h
include/opcode/ChangeLog
include/opcode/i386.h
include/opcode/ppc.h
include/splay-tree.h
texinfo/texinfo.tex
Cherrypick from master 2002-03-11 00:01:11 UTC Daniel Jacobowitz <drow@false.org> 'gdb/:':
include/gdb/ChangeLog
include/gdb/signals.h
Diffstat (limited to 'include/opcode/ppc.h')
-rw-r--r-- | include/opcode/ppc.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index dc3983ec0..f7db66f63 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -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) |