From: Jan Hubicka Date: Mon, 13 Nov 2017 17:28:01 +0000 (+0100) Subject: * tree-ssa-coalesce.c (coalesce_cost): Fix formating. X-Git-Tag: basepoints/gcc-9~3417 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c0264f676283bee5aee79591bd16b1b8f54b6f54;p=thirdparty%2Fgcc.git * tree-ssa-coalesce.c (coalesce_cost): Fix formating. From-SVN: r254699 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index beb406a94568..bf9a01ff017c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2017-11-13 Jan Hubicka + * tree-ssa-coalesce.c (coalesce_cost): Fix formating. + * tree-ssa-sink.c (select_best_block): Do not use frequencies. 2017-11-13 Eric Botcazou diff --git a/gcc/tree-ssa-coalesce.c b/gcc/tree-ssa-coalesce.c index 057d51dcf37a..68d3c3df8f78 100644 --- a/gcc/tree-ssa-coalesce.c +++ b/gcc/tree-ssa-coalesce.c @@ -164,7 +164,8 @@ coalesce_cost (int frequency, bool optimize_for_size) static inline int coalesce_cost_bb (basic_block bb) { - return coalesce_cost (bb->count.to_frequency (cfun), optimize_bb_for_size_p (bb)); + return coalesce_cost (bb->count.to_frequency (cfun), + optimize_bb_for_size_p (bb)); }