[ARC] Rename "class" named attributes.
[deliverable/binutils-gdb.git] / opcodes / arc-dis.c
index 7757ef636cf3fcfabf76b91fc9eb4f514d67d20a..96fd092e8db2acbc6dec0f4abb1ff2d725735731 100644 (file)
@@ -175,7 +175,7 @@ find_format (const struct arc_opcode *arc_table,
        unsigned int value;
 
        /* Check first the extensions.  */
-       if (cl_flags->class & F_CLASS_EXTEND)
+       if (cl_flags->flag_class & F_CLASS_EXTEND)
          {
            value = (insn[0] & 0x1F);
            if (arcExtMap_condCodeName (value))
@@ -226,7 +226,7 @@ print_flags (const struct arc_opcode *opcode,
       const unsigned *flgopridx;
 
       /* Check first the extensions.  */
-      if (cl_flags->class & F_CLASS_EXTEND)
+      if (cl_flags->flag_class & F_CLASS_EXTEND)
        {
          const char *name;
          value = (insn[0] & 0x1F);
@@ -289,7 +289,7 @@ get_auxreg (const struct arc_opcode *opcode,
   unsigned int i;
   const struct arc_aux_reg *auxr = &arc_aux_regs[0];
 
-  if (opcode->class != AUXREG)
+  if (opcode->insn_class != AUXREG)
     return NULL;
 
   name = arcExtMap_auxRegName (value);
@@ -527,7 +527,7 @@ print_insn_arc (bfd_vma memaddr,
   (*info->fprintf_func) (info->stream, "%s", opcode->name);
 
   /* Preselect the insn class.  */
-  switch (opcode->class)
+  switch (opcode->insn_class)
     {
     case BRANCH:
     case JUMP:
This page took 0.02382 seconds and 4 git commands to generate.