*参照元 [#mdebcceb]
#backlinks

*説明 [#wb429db1]
-パス: [[gcc-8.3/gcc/tree-pretty-print.c]]

-FIXME: これは何?
--説明


**引数 [#e0f4d570]
-pretty_printer *pp
--
--[[gcc-8.3/gcc/pretty_printer]]
-tree node
--
--[[gcc-8.3/gcc/tree]]
-dump_flags_t flags
--
--[[gcc-8.3/gcc/dump_flags_t]]


**返り値 [#qb955b41]
-なし


**参考 [#ife1ef84]


*実装 [#a1c9995d]
 /* 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()]]


*コメント [#va46e649]


トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS