diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-06-19 07:12:48 +0200 |
---|---|---|
committer | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-06-20 07:24:25 +0200 |
commit | 160d1b3d74593bf42155da24569f54a6e7140f65 (patch) | |
tree | 07aa127b857a8233489f774a5d811b227865d691 /opcodes/riscv-opc.c | |
parent | 4ef2c1b90ecca33c2948b7b009860767d64c6398 (diff) | |
download | gdb-160d1b3d74593bf42155da24569f54a6e7140f65.zip gdb-160d1b3d74593bf42155da24569f54a6e7140f65.tar.gz gdb-160d1b3d74593bf42155da24569f54a6e7140f65.tar.bz2 |
RISC-V: Accept constant operands in la and lla
opcodes/
PR gas/23305
* riscv-opc.c (riscv_opcodes): Use new format specifier 'B' for
la and lla.
gas/
PR gas/23305
* config/tc-riscv.c (riscv_ip): Add format specifier 'B' for
constants and symbols.
* testsuite/gas/riscv/lla32.d: New file.
* testsuite/gas/riscv/lla32.s: Likewise.
* testsuite/gas/riscv/lla64-fail.d: Likewise.
* testsuite/gas/riscv/lla64-fail.l: Likewise.
* testsuite/gas/riscv/lla64-fail.s: Likewise.
* testsuite/gas/riscv/lla64.d: Likewise.
* testsuite/gas/riscv/lla64.s: Likewise.
Diffstat (limited to 'opcodes/riscv-opc.c')
-rw-r--r-- | opcodes/riscv-opc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/riscv-opc.c b/opcodes/riscv-opc.c index 47e9659..8e55916 100644 --- a/opcodes/riscv-opc.c +++ b/opcodes/riscv-opc.c @@ -278,8 +278,8 @@ const struct riscv_opcode riscv_opcodes[] = applied to an add instruction, for relaxation to use. */ {"add", "I", "d,s,t,0",MATCH_ADD, MASK_ADD, match_opcode, 0 }, {"add", "I", "d,s,j", MATCH_ADDI, MASK_ADDI, match_opcode, INSN_ALIAS }, -{"la", "I", "d,A", 0, (int) M_LA, match_never, INSN_MACRO }, -{"lla", "I", "d,A", 0, (int) M_LLA, match_never, INSN_MACRO }, +{"la", "I", "d,B", 0, (int) M_LA, match_never, INSN_MACRO }, +{"lla", "I", "d,B", 0, (int) M_LLA, match_never, INSN_MACRO }, {"la.tls.gd", "I", "d,A", 0, (int) M_LA_TLS_GD, match_never, INSN_MACRO }, {"la.tls.ie", "I", "d,A", 0, (int) M_LA_TLS_IE, match_never, INSN_MACRO }, {"neg", "I", "d,t", MATCH_SUB, MASK_SUB | MASK_RS1, match_opcode, INSN_ALIAS }, /* sub 0 */ |