From: Jason Eckhardt Date: Wed, 6 Aug 2003 04:31:58 +0000 (+0000) Subject: 2003-08-05 Jason Eckhardt X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b2a0bc3e8c94a33b974164b444980788489bcf35;p=pf3gnuchains%2Fpf3gnuchains3x.git 2003-08-05 Jason Eckhardt * config/tc-i860.c (i860_process_insn): Don't handle dual-bit setting during flop argument parsing. Instead, do it after instruction is fully parsed. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 5dfb5e9915..06114a037b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,11 @@ 2003-08-05 Jason Eckhardt + * config/tc-i860.c (i860_process_insn): Don't handle dual-bit + setting during flop argument parsing. Instead, do it after + instruction is fully parsed. + +2003-08-05 Jason Eckhardt + * doc/c-i860.texi: Mention that .dual, .enddual, and .atmp directives are only available in Intel syntax mode. diff --git a/gas/config/tc-i860.c b/gas/config/tc-i860.c index 2418997e87..37aff49efa 100644 --- a/gas/config/tc-i860.c +++ b/gas/config/tc-i860.c @@ -638,12 +638,6 @@ i860_process_insn (char *str) case 'g': opcode |= mask << 16; - if (dual_mode != DUAL_OFF) - opcode |= (1 << 9); - if (dual_mode == DUAL_DDOT) - dual_mode = DUAL_OFF; - if (dual_mode == DUAL_ONDDOT) - dual_mode = DUAL_ON; if ((opcode & (1 << 10)) && mask != 0 && (mask == ((opcode >> 11) & 0x1f))) as_warn (_("Pipelined instruction: fsrc1 = fdest")); @@ -934,6 +928,21 @@ i860_process_insn (char *str) break; } + /* Set the dual bit on this instruction if necessary. */ + if (dual_mode != DUAL_OFF) + { + if ((opcode & 0xfc000000) == 0x48000000 || opcode == 0xb0000000) + { + opcode |= (1 << 9); + if (dual_mode == DUAL_DDOT) + dual_mode = DUAL_OFF; + else if (dual_mode == DUAL_ONDDOT) + dual_mode = DUAL_ON; + } + else if (dual_mode == DUAL_DDOT || dual_mode == DUAL_ONDDOT) + as_bad (_("Prefix 'd.' invalid for instruction `%s'"), insn->name); + } + the_insn.opcode = opcode; /* Only recognize XP instructions when the user has requested it. */