32 lines
1.3 KiB
Text
32 lines
1.3 KiB
Text
clang fix
|
|
|
|
Index: sources/tools/gcc/cgraph.c
|
|
--- sources/tools/gcc/cgraph.c.orig
|
|
+++ sources/tools/gcc/cgraph.c
|
|
@@ -1976,7 +1976,7 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node)
|
|
fprintf (f, " First run: %i\n", node->tp_first_run);
|
|
fprintf (f, " Function flags:");
|
|
if (node->count)
|
|
- fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
|
|
+ fprintf (f, " executed " HOST_WIDEST_INT_PRINT_DEC "x",
|
|
(HOST_WIDEST_INT)node->count);
|
|
if (node->origin)
|
|
fprintf (f, " nested in: %s", node->origin->asm_name ());
|
|
@@ -2028,7 +2028,7 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node)
|
|
fprintf (f, "%s/%i ", edge->caller->asm_name (),
|
|
edge->caller->order);
|
|
if (edge->count)
|
|
- fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
|
|
+ fprintf (f, "(" HOST_WIDEST_INT_PRINT_DEC "x) ",
|
|
(HOST_WIDEST_INT)edge->count);
|
|
if (edge->frequency)
|
|
fprintf (f, "(%.2f per call) ",
|
|
@@ -2055,7 +2055,7 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node)
|
|
if (edge->indirect_inlining_edge)
|
|
fprintf (f, "(indirect_inlining) ");
|
|
if (edge->count)
|
|
- fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
|
|
+ fprintf (f, "(" HOST_WIDEST_INT_PRINT_DEC "x) ",
|
|
(HOST_WIDEST_INT)edge->count);
|
|
if (edge->frequency)
|
|
fprintf (f, "(%.2f per call) ",
|