This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] Small formatting fix


Hi!

While looking into PR83422 I've noticed this formatting glitch,
bootstrapped/regtested on x86_64-linux and i686-linux, committed to
trunk as obvious.

2017-12-14  Jakub Jelinek  <jakub@redhat.com>

	* var-tracking.c (variable_tracking_main_1): Formatting fix.

--- gcc/var-tracking.c.jj	2017-12-14 12:02:07.000000000 +0100
+++ gcc/var-tracking.c	2017-12-14 17:58:12.136309252 +0100
@@ -10424,8 +10424,8 @@ variable_tracking_main_1 (void)
   if (!flag_var_tracking)
     return 0;
 
-  if (n_basic_blocks_for_fn (cfun) > 500 &&
-      n_edges_for_fn (cfun) / n_basic_blocks_for_fn (cfun) >= 20)
+  if (n_basic_blocks_for_fn (cfun) > 500
+      && n_edges_for_fn (cfun) / n_basic_blocks_for_fn (cfun) >= 20)
     {
       vt_debug_insns_local (true);
       return 0;

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]