+Mon Dec 16 10:08:46 1996 Jeffrey A Law (law@cygnus.com)
+
+ * config/tc-mn10200.c (mn10200_insert_operand): Don't
+ check 24bit operands for overflow.
+ (check_operand): Likewise.
+
Mon Dec 16 11:50:40 1996 Ian Lance Taylor <ian@cygnus.com>
* doc/as.texinfo (Section): Document how to use the .section
if (match == 0)
{
next_opcode = opcode + 1;
- if (next_opcode->opcode != 0 && !strcmp(next_opcode->name, opcode->name))
+ if (!strcmp(next_opcode->name, opcode->name))
{
opcode = next_opcode;
continue;
unsigned int line;
unsigned int shift;
{
- /* No need to check 32bit operands for a bit. */
- if (operand->bits != 32)
+ /* No need to check 24 or 32bit operands for a bit. */
+ if (operand->bits < 24)
{
long min, max;
offsetT test;
const struct mn10200_operand *operand;
offsetT val;
{
- /* No need to check 32bit operands for a bit. */
- if (operand->bits != 32)
+ /* No need to check 24bit or 32bit operands for a bit. */
+ if (operand->bits < 24)
{
long min, max;
offsetT test;