- 履歴一覧
- ソース を表示
- gcc-8.3/gcc/print_rtx_operand_code_e() は削除されています。
参照元†
返り値†
/* Subroutine of print_rtx_operand for handling code 'e'.
Also called by print_rtx_operand_code_u for handling code 'u'
for LABEL_REFs when they don't reference a CODE_LABEL. */
void
rtx_writer::print_rtx_operand_code_e (const_rtx in_rtx, int idx)
{
m_indent += 2;
if (idx == 6 && INSN_P (in_rtx))
/* Put REG_NOTES on their own line. */
fprintf (m_outfile, "\n%s%*s",
print_rtx_head, m_indent * 2, "");
if (!m_sawclose)
fprintf (m_outfile, " ");
if (idx == 7 && CALL_P (in_rtx))
{
m_in_call_function_usage = true;
print_rtx (XEXP (in_rtx, idx));
m_in_call_function_usage = false;
}
else
print_rtx (XEXP (in_rtx, idx));
m_indent -= 2;
}
コメント†