Comments
Patch
===================================================================
@@ -5453,7 +5453,7 @@ Dump after all tree based optimization,
@item gimple
@opindex fdump-tree-gimple
-Dump each function before and after the gimplification pass to a file. The
+Dump each function after the gimplification pass to a file. The
file name is made by appending @file{.gimple} to the source file name.
@item cfg
===================================================================
@@ -34,7 +34,7 @@ enum tree_dump_index
TDI_tu, /* dump the whole translation unit. */
TDI_class, /* dump class hierarchy. */
TDI_original, /* dump each function before optimizing it */
- TDI_generic, /* dump each function after genericizing it */
+ TDI_gimple, /* dump each function after gimplification */
TDI_nested, /* dump each function after unnesting it */
TDI_vcg, /* create a VCG graph file for each
function's flowgraph. */
===================================================================
@@ -794,7 +794,7 @@ cgraph_analyze_function (struct cgraph_n
body. */
if (!gimple_body (decl))
gimplify_function_tree (decl);
- dump_function (TDI_generic, decl);
+ dump_function (TDI_gimple, decl);
cgraph_lower_function (node);
node->analyzed = true;
===================================================================
@@ -387,7 +387,7 @@ finalize_size_functions (void)
{
dump_function (TDI_original, fndecl);
gimplify_function_tree (fndecl);
- dump_function (TDI_generic, fndecl);
+ dump_function (TDI_gimple, fndecl);
cgraph_finalize_function (fndecl, false);
}