Changeset 609 for branches/GNU/src/binutils/opcodes/arc-opc.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/opcodes/arc-opc.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 18 18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 19 19 20 #include "sysdep.h" 20 21 #include <stdio.h> 21 22 #include "ansidecl.h" 23 #include "bfd.h" 22 24 #include "opcode/arc.h" 23 25 … … 64 66 65 67 enum operand ls_operand[OPERANDS]; 68 69 struct arc_opcode *arc_ext_opcodes; 70 struct arc_ext_operand_value *arc_ext_operands; 66 71 67 72 #define LS_VALUE 0 … … 515 520 ARC_MACH_8 516 521 }; 517 return mach_type_map[bfd_mach ] | (big_p ? ARC_MACH_BIG : 0);522 return mach_type_map[bfd_mach - bfd_mach_arc_5] | (big_p ? ARC_MACH_BIG : 0); 518 523 } 519 524 … … 1154 1159 limm += arc_limm_fixup_adjust(insn); 1155 1160 } 1156 if (ST_SYNTAX(OP_LIMM,OP_SHIMM,OP_SHIMM) && (shimm * 2 == limm))1157 {1158 insn &= ~C(-1);1159 limm_p = 0;1160 limm = 0;1161 insn |= C(ARC_REG_SHIMM);1162 ls_operand[LS_VALUE] = OP_SHIMM;1163 }1164 1161 if (!(ST_SYNTAX(OP_REG,OP_REG,OP_NONE) 1165 1162 || ST_SYNTAX(OP_REG,OP_LIMM,OP_NONE) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.