diff options
author | Nick Clifton <nickc@redhat.com> | 2002-09-04 09:59:48 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-09-04 09:59:48 +0000 |
commit | 2e32aab953475e6b6c0d039a2de4785d9ed198fd (patch) | |
tree | 170ebf5be0466f8f820a7428584518190b8421ca /opcodes | |
parent | 5731205c2834e981b6c4e60a70005233e727afa5 (diff) | |
download | binutils-2e32aab953475e6b6c0d039a2de4785d9ed198fd.tar.gz binutils-2e32aab953475e6b6c0d039a2de4785d9ed198fd.tar.bz2 binutils-2e32aab953475e6b6c0d039a2de4785d9ed198fd.zip |
The BookE implementations of the TLBWE and TLBRE instructions do not take any
arguments.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/ppc-opc.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 138483f371e..7f3dfb4c62e 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-09-04 Nick Clifton <nickc@redhat.com> + + * ppc-opc.c: The BookE implementations of the TLBWE and TLBRE + instructions do not take any arguments. + 2002-09-02 Nick Clifton <nickc@redhat.com> * v850-opc.c: Remove redundant references to V850EA architecture. diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c index 9ba4e25ee09..ff7e8d76280 100644 --- a/opcodes/ppc-opc.c +++ b/opcodes/ppc-opc.c @@ -4211,7 +4211,7 @@ const struct powerpc_opcode powerpc_opcodes[] = { { "stdxe", X(31,927), X_MASK, BOOKE64, { RS, RA, RB } }, -{ "tlbre", X(31,946), X_MASK, BOOKE, { RT, RA, WS } }, +{ "tlbre", X(31,946), X_MASK, BOOKE, { 0 } }, { "tlbrehi", XTLB(31,946,0), XTLB_MASK, PPC403, { RT, RA } }, { "tlbrelo", XTLB(31,946,1), XTLB_MASK, PPC403, { RT, RA } }, @@ -4226,14 +4226,14 @@ const struct powerpc_opcode powerpc_opcodes[] = { { "iccci", X(31,966), XRT_MASK, PPC403, { RA, RB } }, +{ "tlbwe", X(31,978), X_MASK, BOOKE, { 0 } }, + { "tlbld", X(31,978), XRTRA_MASK, PPC, { RB } }, { "tlbwehi", XTLB(31,978,0), XTLB_MASK, PPC403, { RT, RA } }, { "tlbwelo", XTLB(31,978,1), XTLB_MASK, PPC403, { RT, RA } }, { "tlbwe", X(31,978), X_MASK, PPC403, { RS, RA, SH } }, -{ "tlbwe", X(31,978), X_MASK, BOOKE, { RT, RA, WS } }, - { "icbi", X(31,982), XRT_MASK, PPC, { RA, RB } }, { "stfiwx", X(31,983), X_MASK, PPC, { FRS, RA, RB } }, |