+2014-11-06  Sandra Loosemore  <sandra@codesourcery.com>
+
+       * config/tc-nios2.c (nios2_diagnose_overflow): Adjust call to
+       nios2_find_opcode_hash.
+
 2014-11-05  Matthew Fortune  <matthew.fortune@imgtec.com>
 
        * config/tc-mips.c (mips_elf_final_processing): Add INSN_ISA32R6
 
       unsigned int range_max;
       unsigned int address;
 
-      opcode = nios2_find_opcode_hash (value);
+      opcode = nios2_find_opcode_hash (value, bfd_get_mach (stdoutput));
       gas_assert (opcode);
       gas_assert (fixP->fx_size == opcode->size);
       overflow_msg_type = opcode->overflow_msg;
 
+2014-11-06  Sandra Loosemore  <sandra@codesourcery.com>
+
+       * nios2.h (nios2_find_opcode_hash): Add mach parameter to
+       declaration.  Fix obsolete comment.
+
 2014-10-23  Sandra Loosemore  <sandra@codesourcery.com>
 
        * nios2.h (enum iw_format_type): New.
 
 extern const int nios2_num_builtin_regs;
 extern int nios2_num_regs;
 
-/* This is made extern so that the assembler can use it to find out
-   what instruction caused an error.  */
-extern const struct nios2_opcode *nios2_find_opcode_hash (unsigned long);
+/* Return the opcode descriptor for a single instruction.  */
+extern const struct nios2_opcode *
+nios2_find_opcode_hash (unsigned long, unsigned long);
 
 #endif /* _NIOS2_H */
 
+2014-11-06  Sandra Loosemore  <sandra@codesourcery.com>
+
+       * nios2-dis.c (nios2_find_opcode_hash): Add mach parameter.
+       (nios2_disassemble): Adjust call to nios2_find_opcode_hash.
+
 2014-11-03  Nick Clifton  <nickc@redhat.com>
 
        * po/fi.po: Updated Finnish translation.
 
 }
 
 /* Return a pointer to an nios2_opcode struct for a given instruction
-   opcode, or NULL if there is an error.  */
+   word OPCODE for bfd machine MACH, or NULL if there is an error.  */
 const struct nios2_opcode *
-nios2_find_opcode_hash (unsigned long opcode)
+nios2_find_opcode_hash (unsigned long opcode,
+                       unsigned long mach ATTRIBUTE_UNUSED)
 {
   nios2_opcode_hash *entry;
   nios2_disassembler_state *state;
 
   /* Find the major opcode and use this to disassemble
      the instruction and its arguments.  */
-  op = nios2_find_opcode_hash (opcode);
+  op = nios2_find_opcode_hash (opcode, info->mach);
 
   if (op != NULL)
     {