Revision 42fe4044

b/mips-dis.c
528 528
   ISA/ASE bitmask to test against; and CPU is the CPU specific ISA to
529 529
   test, or zero if no CPU specific ISA test is desired.  */
530 530

  
531
#if 0
531 532
#define OPCODE_IS_MEMBER(insn, isa, cpu)				\
532 533
    (((insn)->membership & isa) != 0					\
533 534
     || (cpu == CPU_R4650 && ((insn)->membership & INSN_4650) != 0)	\
......
543 544
     || (cpu == CPU_VR5400 && ((insn)->membership & INSN_5400) != 0)	\
544 545
     || (cpu == CPU_VR5500 && ((insn)->membership & INSN_5500) != 0)	\
545 546
     || 0)	/* Please keep this term for easier source merging.  */
547
#else
548
#define OPCODE_IS_MEMBER(insn, isa, cpu)                               \
549
    (1 != 0)
550
#endif
546 551

  
547 552
/* This is a list of macro expanded instructions.
548 553

  

Also available in: Unified diff