aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-12-03 18:15:48 +0000
committerRichard Henderson <rth@redhat.com>2002-12-03 18:15:48 +0000
commita823923bf657b448ef2ef71ab7b8fad2f31cd818 (patch)
tree8b05668c014a8c78fd375edc8d9af3daa23efd7f /gas/config
parent144da3c187ed993a76044e4e12a655dd760ef129 (diff)
downloadgdb-a823923bf657b448ef2ef71ab7b8fad2f31cd818.zip
gdb-a823923bf657b448ef2ef71ab7b8fad2f31cd818.tar.gz
gdb-a823923bf657b448ef2ef71ab7b8fad2f31cd818.tar.bz2
include/opcode/
* ia64.h (enum ia64_opnd): Add IA64_OPND_LDXMOV. bfd/ * cpu-ia64-opc.c (elf64_ia64_operands): Add ldxmov entry. opcodes/ * ia64-opc-m.c: Add ld8.mov. * ia64-asmtab.c: Regenerate. gas/ * config/tc-ia64.c (operand_match): Add IA64_OPND_LDXMOV case. gas/testsuite/ * gas/ia64/ldxmov-1.[ds]: New. * gas/ia64/ldxmov-2.[ls]: New. * gas/ia64/ia64.exp: Run them.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-ia64.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c
index 2cb25b0..1e8542d 100644
--- a/gas/config/tc-ia64.c
+++ b/gas/config/tc-ia64.c
@@ -5523,6 +5523,15 @@ operand_match (idesc, index, e)
}
break;
+ case IA64_OPND_LDXMOV:
+ fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
+ fix->code = BFD_RELOC_IA64_LDXMOV;
+ fix->opnd = idesc->operands[index];
+ fix->expr = *e;
+ fix->is_pcrel = 0;
+ ++CURR_SLOT.num_fixups;
+ return OPERAND_MATCH;
+
default:
break;
}