* config/tc-avr.c (avr_operand): fix the fomratting of the comment.
This commit is contained in:
parent
68ab2dd99e
commit
e38c9cc203
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Jun 7 22:44:14 2000 Denis Chertykov <denisc@overta.ru>
|
||||||
|
|
||||||
|
* config/tc-avr.c (avr_operand): fix the fomratting of the comment.
|
||||||
|
|
||||||
Wed Jun 7 21:26:15 2000 Denis Chertykov <denisc@overta.ru>
|
Wed Jun 7 21:26:15 2000 Denis Chertykov <denisc@overta.ru>
|
||||||
|
|
||||||
* config/tc-avr.c (AVR_ISA_???): moved to include/opcode/avr.h
|
* config/tc-avr.c (AVR_ISA_???): moved to include/opcode/avr.h
|
||||||
|
|
|
@ -551,8 +551,10 @@ avr_operand (opcode, where, op, line)
|
||||||
as_bad (_ ("cannot both predecrement and postincrement"));
|
as_bad (_ ("cannot both predecrement and postincrement"));
|
||||||
op_mask |= 0x1001;
|
op_mask |= 0x1001;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* avr1 can do "ld r,Z" and "st Z,r" but no other pointer
|
/* avr1 can do "ld r,Z" and "st Z,r" but no other pointer
|
||||||
registers, no predecrement, no postincrement */
|
registers, no predecrement, no postincrement. */
|
||||||
|
|
||||||
if ((op_mask & 0x100F) && !(avr_mcu->isa & AVR_ISA_SRAM))
|
if ((op_mask & 0x100F) && !(avr_mcu->isa & AVR_ISA_SRAM))
|
||||||
as_bad (_ ("addressing mode not supported"));
|
as_bad (_ ("addressing mode not supported"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue