summaryrefslogtreecommitdiff
path: root/gcc/mcf.c
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2015-05-09 04:50:05 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2015-05-09 04:50:05 +0000
commitf03df32112cfca98484bf085e62e7f6c8659a07c (patch)
tree332b7ebee4f40f05eb7ab5af1cf1c26cf1111e16 /gcc/mcf.c
parent548a37a85cd54490e5ebb5a34816a189eb2a4845 (diff)
downloadgcc-f03df32112cfca98484bf085e62e7f6c8659a07c.tar.gz
* bitmap.c, c/c-aux-info.c, cfg.c, cfghooks.c, cgraph.c,
config/aarch64/aarch64.md config/alpha/vms.h, config/darwin.c, config/darwin.h, config/darwin9.h, config/elfos.h, config/i386/bsd.h, config/ia64/ia64.c, config/lm32/lm32.h, config/microblaze/microblaze.h, config/mips/mips.h, config/mmix/mmix.c, config/msp430/msp430.c, config/nios2/nios2.h, config/nvptx/nvptx.c, config/nvptx/nvptx.h, config/pa/pa.c, config/pa/pa.h, config/rs6000/rs6000.c, config/rs6000/sysv4.h, config/rs6000/xcoff.h, config/rx/rx.h, config/s390/s390.h, config/sparc/sol2.h, config/sparc/sparc.h, config/visium/visium.h, cppbuiltin.c, defaults.h, doc/invoke.texi, dwarf2cfi.c, dwarf2out.c, final.c, gcc.c, gcov-dump.c, gcov.c, ipa-cp.c, ipa-inline.c, ipa-polymorphic-call.c, ipa-profile.c, ipa-prop.c, ira-color.c, ira.c, loop-doloop.c, loop-iv.c, mcf.c, modulo-sched.c, predict.c, profile.c, stor-layout.c, toplev.c, tree-ssa-reassoc.c, value-prof.c, wide-int-print.cc: Add space between string literal and macro name. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222960 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mcf.c')
-rw-r--r--gcc/mcf.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/gcc/mcf.c b/gcc/mcf.c
index db96eb11271..9dacde2d783 100644
--- a/gcc/mcf.c
+++ b/gcc/mcf.c
@@ -214,12 +214,12 @@ dump_fixup_edge (FILE *file, fixup_graph_type *fixup_graph, fixup_edge_p fedge)
if (fedge->type)
{
- fprintf (file, "flow/capacity=%"PRId64 "/",
+ fprintf (file, "flow/capacity=%" PRId64 "/",
fedge->flow);
if (fedge->max_capacity == CAP_INFINITY)
fputs ("+oo,", file);
else
- fprintf (file, "%"PRId64 ",", fedge->max_capacity);
+ fprintf (file, "%" PRId64 ",", fedge->max_capacity);
}
if (fedge->is_rflow_valid)
@@ -227,10 +227,10 @@ dump_fixup_edge (FILE *file, fixup_graph_type *fixup_graph, fixup_edge_p fedge)
if (fedge->rflow == CAP_INFINITY)
fputs (" rflow=+oo.", file);
else
- fprintf (file, " rflow=%"PRId64 ",", fedge->rflow);
+ fprintf (file, " rflow=%" PRId64 ",", fedge->rflow);
}
- fprintf (file, " cost=%"PRId64 ".", fedge->cost);
+ fprintf (file, " cost=%" PRId64 ".", fedge->cost);
fprintf (file, "\t(%d->%d)", fedge->src, fedge->dest);
@@ -637,9 +637,9 @@ create_fixup_graph (fixup_graph_type *fixup_graph)
if (dump_file)
{
fprintf (dump_file, "\nAdjust supply and demand:\n");
- fprintf (dump_file, "supply_value=%"PRId64 "\n",
+ fprintf (dump_file, "supply_value=%" PRId64 "\n",
supply_value);
- fprintf (dump_file, "demand_value=%"PRId64 "\n",
+ fprintf (dump_file, "demand_value=%" PRId64 "\n",
demand_value);
}
@@ -909,10 +909,10 @@ cancel_negative_cycle (fixup_graph_type *fixup_graph,
{
fprintf (dump_file, "%d", cycle[k]);
fprintf (dump_file,
- ": (%"PRId64 ", %"PRId64
+ ": (%" PRId64 ", %" PRId64
")\n", sum_cost, cycle_flow);
fprintf (dump_file,
- "Augment cycle with %"PRId64 "\n",
+ "Augment cycle with %" PRId64 "\n",
cycle_flow);
}
@@ -1104,10 +1104,10 @@ find_max_flow (fixup_graph_type *fixup_graph, int source, int sink)
fprintf (dump_file, "<-");
}
fprintf (dump_file,
- "ENTRY (path_capacity=%"PRId64 ")\n",
+ "ENTRY (path_capacity=%" PRId64 ")\n",
increment);
fprintf (dump_file,
- "Network flow is %"PRId64 ".\n",
+ "Network flow is %" PRId64 ".\n",
max_flow);
}
}
@@ -1144,7 +1144,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
/* Fixup BB. */
if (dump_file)
fprintf (dump_file,
- "BB%d: %"PRId64 "", bb->index, bb->count);
+ "BB%d: %" PRId64 "", bb->index, bb->count);
pfedge = find_fixup_edge (fixup_graph, i, i + 1);
if (pfedge->flow)
@@ -1152,7 +1152,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
bb->count += pfedge->flow;
if (dump_file)
{
- fprintf (dump_file, " + %"PRId64 "(",
+ fprintf (dump_file, " + %" PRId64 "(",
pfedge->flow);
print_edge (dump_file, fixup_graph, i, i + 1);
fprintf (dump_file, ")");
@@ -1167,7 +1167,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
bb->count -= pfedge_n->flow;
if (dump_file)
{
- fprintf (dump_file, " - %"PRId64 "(",
+ fprintf (dump_file, " - %" PRId64 "(",
pfedge_n->flow);
print_edge (dump_file, fixup_graph, i + 1,
pfedge->norm_vertex_index);
@@ -1175,7 +1175,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
}
}
if (dump_file)
- fprintf (dump_file, " = %"PRId64 "\n", bb->count);
+ fprintf (dump_file, " = %" PRId64 "\n", bb->count);
/* Fixup edge. */
FOR_EACH_EDGE (e, ei, bb->succs)
@@ -1186,7 +1186,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
j = 2 * e->dest->index;
if (dump_file)
- fprintf (dump_file, "%d->%d: %"PRId64 "",
+ fprintf (dump_file, "%d->%d: %" PRId64 "",
bb->index, e->dest->index, e->count);
pfedge = find_fixup_edge (fixup_graph, i + 1, j);
@@ -1199,7 +1199,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
e->count += pfedge->flow;
if (dump_file)
{
- fprintf (dump_file, " + %"PRId64 "(",
+ fprintf (dump_file, " + %" PRId64 "(",
pfedge->flow);
print_edge (dump_file, fixup_graph, i + 1, j);
fprintf (dump_file, ")");
@@ -1214,7 +1214,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
e->count -= pfedge_n->flow;
if (dump_file)
{
- fprintf (dump_file, " - %"PRId64 "(",
+ fprintf (dump_file, " - %" PRId64 "(",
pfedge_n->flow);
print_edge (dump_file, fixup_graph, j,
pfedge->norm_vertex_index);
@@ -1234,7 +1234,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
if (dump_file)
{
fprintf (dump_file, "(self edge)");
- fprintf (dump_file, " + %"PRId64 "(",
+ fprintf (dump_file, " + %" PRId64 "(",
pfedge_n->flow);
print_edge (dump_file, fixup_graph, i + 1,
pfedge->norm_vertex_index);
@@ -1245,7 +1245,7 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
if (bb->count)
e->probability = REG_BR_PROB_BASE * e->count / bb->count;
if (dump_file)
- fprintf (dump_file, " = %"PRId64 "\t(%.1f%%)\n",
+ fprintf (dump_file, " = %" PRId64 "\t(%.1f%%)\n",
e->count, e->probability * 100.0 / REG_BR_PROB_BASE);
}
}
@@ -1298,14 +1298,14 @@ adjust_cfg_counts (fixup_graph_type *fixup_graph)
|| (bb->count != sum_edge_counts (bb->succs)))
{
fprintf (dump_file,
- "BB%d(%"PRId64 ") **INVALID**: ",
+ "BB%d(%" PRId64 ") **INVALID**: ",
bb->index, bb->count);
fprintf (stderr,
- "******** BB%d(%"PRId64
+ "******** BB%d(%" PRId64
") **INVALID**: \n", bb->index, bb->count);
- fprintf (dump_file, "in_edges=%"PRId64 " ",
+ fprintf (dump_file, "in_edges=%" PRId64 " ",
sum_edge_counts (bb->preds));
- fprintf (dump_file, "out_edges=%"PRId64 "\n",
+ fprintf (dump_file, "out_edges=%" PRId64 "\n",
sum_edge_counts (bb->succs));
}
}