* gas/config/tc-arm.c (parse_neon_mov): Update which_operand

correctly.
This commit is contained in:
Matthew Gretton-Dann 2011-12-07 16:44:55 +00:00
parent d482a87555
commit 1b11b49fe4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-11-07 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
* config/tc-arm.c (parse_neon_mov): Update which_operand
correctly.
2011-12-05 Richard Earnshaw <rearnsha@arm.com>
* tc-arm.c (aeabi_set_public_attributes): Correctly set

View File

@ -5931,7 +5931,7 @@ parse_neon_mov (char **str, int *which_operand)
inst.operands[i].reg = val;
inst.operands[i].isreg = 1;
inst.operands[i++].present = 1;
inst.operands[i].present = 1;
}
}
else if (parse_qfloat_immediate (&ptr, &inst.operands[i].imm) == SUCCESS)
@ -6021,7 +6021,7 @@ parse_neon_mov (char **str, int *which_operand)
inst.operands[i].isvec = 1;
inst.operands[i].issingle = 1;
inst.operands[i].vectype = optype;
inst.operands[i++].present = 1;
inst.operands[i].present = 1;
}
}
else