ngettext support
[deliverable/binutils-gdb.git] / opcodes / disassemble.c
index cd134e87189a323ae0ef87e1452dbb0cd572c21e..11206c67a5f2ce843e2cbcd558d045ca0d17fd63 100644 (file)
 #endif
 
 disassembler_ftype
-disassembler (enum bfd_architecture a, bfd_boolean big, unsigned long mach,
-             bfd *abfd)
+disassembler (enum bfd_architecture a,
+             bfd_boolean big ATTRIBUTE_UNUSED,
+             unsigned long mach ATTRIBUTE_UNUSED,
+             bfd *abfd ATTRIBUTE_UNUSED)
 {
   disassembler_ftype disassemble;
 
-  if (abfd != NULL)
-    {
-      /* Do some asserts that the first three parameters should equal
-        to what we can get from ABFD.  On the other hand, these
-        asserts help removing some compiler errors on unused
-        parameter.  */
-      assert (a == bfd_get_arch (abfd));
-      assert (big == bfd_big_endian (abfd));
-      assert (mach == bfd_get_mach (abfd));
-    }
-
   switch (a)
     {
       /* If you add a case to this table, also add it to the
This page took 0.024278 seconds and 4 git commands to generate.