diff options
author | Matthew Green <mrg@redhat.com> | 2002-01-03 02:07:19 +0000 |
---|---|---|
committer | Matthew Green <mrg@redhat.com> | 2002-01-03 02:07:19 +0000 |
commit | d48d56d07b65449524cdb30b38929cbcda22140e (patch) | |
tree | 74e631690fcb4247bbddf04390c1e97c08acb022 | |
parent | b16f2ee7e606e88a0bdf7efdc2a4927d1c0ddcdd (diff) | |
download | newlib-d48d56d07b65449524cdb30b38929cbcda22140e.zip newlib-d48d56d07b65449524cdb30b38929cbcda22140e.tar.gz newlib-d48d56d07b65449524cdb30b38929cbcda22140e.tar.bz2 |
[gas/ChangeLog]
* config/tc-ppc.c (md_parse_option): BookE is not Motorola specific.
[include/opcode/ChangeLog]
* ppc.h (PPC_OPCODE_BOOKE): BookE is not Motorola specific.
(PPC_OPCODE_BOOKE64): Likewise.
-rw-r--r-- | include/opcode/ChangeLog | 5 | ||||
-rw-r--r-- | include/opcode/ppc.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 0d2daab..a72d22e 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,8 @@ +2002-01-03 matthew green <mrg@redhat.com> + + * ppc.h (PPC_OPCODE_BOOKE): BookE is not Motorola specific. + (PPC_OPCODE_BOOKE64): Likewise. + Mon Dec 31 16:45:41 2001 Jeffrey A Law (law@cygnus.com) * hppa.h (call, ret): Move to end of table. diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index b22173b..dc3983e 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -94,10 +94,10 @@ extern const int powerpc_num_opcodes; /* Opcode is supported by PowerPC 403 processor. */ #define PPC_OPCODE_403 (02000) -/* Opcode is supported by Motorola BookE processor. */ +/* Opcode is supported by PowerPC BookE processor. */ #define PPC_OPCODE_BOOKE (04000) -/* Opcode is only supported by 64-bit Motorola BookE processor. */ +/* Opcode is only supported by 64-bit PowerPC BookE processor. */ #define PPC_OPCODE_BOOKE64 (010000) /* A macro to extract the major opcode from an instruction. */ |