aboutsummaryrefslogtreecommitdiff
path: root/gprof/gprof.c
diff options
context:
space:
mode:
Diffstat (limited to 'gprof/gprof.c')
-rw-r--r--gprof/gprof.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gprof/gprof.c b/gprof/gprof.c
index 6415c30..4df99751 100644
--- a/gprof/gprof.c
+++ b/gprof/gprof.c
@@ -612,7 +612,7 @@ This program is free software. This program has absolutely no warranty.\n"));
if (output_style & STYLE_FLAT_PROFILE)
{
/* Print the flat profile. */
- hist_print ();
+ hist_print ();
}
if (cg && (output_style & STYLE_CALL_GRAPH))
@@ -620,20 +620,20 @@ This program is free software. This program has absolutely no warranty.\n"));
if (!bsd_style_output)
{
/* Print the dynamic profile. */
- cg_print (cg);
+ cg_print (cg);
}
cg_print_index ();
}
if (output_style & STYLE_EXEC_COUNTS)
print_exec_counts ();
-
+
if (output_style & STYLE_ANNOTATED_SOURCE)
print_annotated_source ();
-
+
if (output_style & STYLE_FUNCTION_ORDER)
cg_print_function_ordering ();
-
+
if (output_style & STYLE_FILE_ORDER)
cg_print_file_ordering ();