Re: using recog_data.operand in ASM_OUTPUT_OPCODE

2005-08-04 Thread James E Wilson
Tabony, Charles wrote: How can I distinguish recognized from unrecognized insns in ASM_OUTPUT_OPCODE? Try using the variable this_is_asm_operands. ASM_OUTPUT_OPCODE is an old macro that doesn't get used much anymore. FINAL_PRESCAN_INSN is better if you can use it. No recog_data.operand tric

using recog_data.operand in ASM_OUTPUT_OPCODE

2005-08-04 Thread Tabony, Charles
Hi, I am trying to use recog_data.operand in ASM_OUTPUT_OPCODE to access the operands of the current insn for printing as the documentation for ASM_OUTPUT_OPCODE suggests. However, this does not work for printing inline assembly because asm insns are never matched. How can I distinguish recogniz