On 08/16/2011 11:52 PM, Khansa Butt wrote: > If I pass env->insn_flags to target_disas() how can I pass this flag info > from disas.c to mips-dis.c. can i do following thing for MIPS in disas.c > if (flags & 0xFFFF) { > disasm_info.mach = flags & 0xFFFF;
Well, I'd have written this as disasm_info.mach = flags; I see no reason for the AND or IF. > how can I make mips-defs.h 's definitions visible to mips-dis.c? #include? r~