diff options
author | Jose E. Marchesi <jose.marchesi@oracle.com> | 2016-08-26 07:31:31 -0700 |
---|---|---|
committer | Jose E. Marchesi <jose.marchesi@oracle.com> | 2016-08-26 07:31:31 -0700 |
commit | 1b8b65328f8825444a7370a7817f2802b0e1a7c9 (patch) | |
tree | 8bb40952326189d90c71f7e760637c6b50bc83d3 /gas | |
parent | 68c398921742291719d97f803891b5113874a22b (diff) | |
download | gdb-1b8b65328f8825444a7370a7817f2802b0e1a7c9.zip gdb-1b8b65328f8825444a7370a7817f2802b0e1a7c9.tar.gz gdb-1b8b65328f8825444a7370a7817f2802b0e1a7c9.tar.bz2 |
opcodes, gas: fix mnemonic of sparc camellia_fl
This patch fixes a typo in the mnemonic of the camellia_fl
instruction, which was implemented before as camellia_fi.
gas/ChangeLog:
2016-08-26 Jose E. Marchesi <jose.marchesi@oracle.com>
* testsuite/gas/sparc/crypto.d: Rename invalid opcode camellia_fi
to camellia_fl.
* testsuite/gas/sparc/crypto.s: Likewise.
opcodes/ChangeLog:
2016-08-26 Jose E. Marchesi <jose.marchesi@oracle.com>
* sparc-opc.c (sparc_opcodes): Fix typo in opcode, camellia_fi ->
camellia_fl.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/testsuite/gas/sparc/crypto.d | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/sparc/crypto.s | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 61d4b48..abcdba7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2016-08-26 Jose E. Marchesi <jose.marchesi@oracle.com> + + * testsuite/gas/sparc/crypto.d: Rename invalid opcode camellia_fi + to camellia_fl. + * testsuite/gas/sparc/crypto.s: Likewise. + 2016-08-26 Thomas Preud'homme <thomas.preudhomme@arm.com> * config/tc-arm.c (v7m_psrs): Add MSPLIM, PSPLIM, MSPLIM_NS, diff --git a/gas/testsuite/gas/sparc/crypto.d b/gas/testsuite/gas/sparc/crypto.d index daebb65..a7d8a38 100644 --- a/gas/testsuite/gas/sparc/crypto.d +++ b/gas/testsuite/gas/sparc/crypto.d @@ -31,7 +31,7 @@ Disassembly of section .text: 54: 9f b2 e7 0d kasumi_fi_fi %f42, %f44, %f46 58: a6 cb 63 4f kasumi_fl_xor %f44, %f46, %f48, %f50 5c: aa cb e7 71 kasumi_fi_xor %f46, %f48, %f50, %f52 - 60: af b4 e7 95 camellia_fi %f50, %f52, %f54 + 60: af b4 e7 95 camellia_fl %f50, %f52, %f54 64: b3 b5 67 b7 camellia_fli %f52, %f54, %f56 68: ba cd f7 99 camellia_f %f54, %f56, %f58, %f60 6c: 81 b0 29 00 mpmul 0 diff --git a/gas/testsuite/gas/sparc/crypto.s b/gas/testsuite/gas/sparc/crypto.s index 217a742..4557551 100644 --- a/gas/testsuite/gas/sparc/crypto.s +++ b/gas/testsuite/gas/sparc/crypto.s @@ -24,7 +24,7 @@ kasumi_fi_fi %f42, %f44, %f46 kasumi_fl_xor %f44, %f46, %f48, %f50 kasumi_fi_xor %f46, %f48, %f50, %f52 - camellia_fi %f50, %f52, %f54 + camellia_fl %f50, %f52, %f54 camellia_fli %f52, %f54, %f56 camellia_f %f54, %f56, %f58, %f60 mpmul 0 |