参照元 †
説明 †
- パス: gcc-8.3/gcc/tree-pretty-print.c?
引数 †
- pretty_printer *pp
- gcc-8.3/gcc/pretty_printer?
- tree node
- dump_flags_t flags
- gcc-8.3/gcc/dump_flags_t?
返り値 †
参考 †
実装 †
/* Like the above, but used for pretty printing function calls. */
static void
dump_function_name (pretty_printer *pp, tree node, dump_flags_t flags)
{
if (CONVERT_EXPR_P (node))
node = TREE_OPERAND (node, 0);
if (DECL_NAME (node) && (flags & TDF_ASMNAME) == 0)
pp_string (pp, lang_hooks.decl_printable_name (node, 1));
else
dump_decl_name (pp, node, flags);
}
- gcc-8.3/gcc/CONVERT_EXPR_P()?
- gcc-8.3/gcc/TREE_OPERAND()?
- gcc-8.3/gcc/DECL_NAME()?
- gcc-8.3/gcc/pp_string()?
- gcc-8.3/gcc/lang_hooks?
- gcc-8.3/gcc/dump_decl_name()?
コメント †