[gcc r10-7106] minor: fix intendation in ddg.c

Roman Zhuykov zhroma@gcc.gnu.org
Tue Mar 10 17:02:17 GMT 2020


https://gcc.gnu.org/g:90b5ebd76934b6c297b92946a2989c5ed9cc13cc

commit r10-7106-g90b5ebd76934b6c297b92946a2989c5ed9cc13cc
Author: Roman Zhuykov <zhroma@ispras.ru>
Date:   Tue Mar 10 19:47:53 2020 +0300

    minor: fix intendation in ddg.c
    
    gcc/ChangeLog:
            * ddg.c (create_ddg): Fix intendation.
            (set_recurrence_length): Likewise.
            (create_ddg_all_sccs): Likewise.

Diff:
---
 gcc/ChangeLog |  6 ++++++
 gcc/ddg.c     | 34 +++++++++++++++++-----------------
 2 files changed, 23 insertions(+), 17 deletions(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5d5bbf4fed5..ca90147c3e1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2020-03-10  Roman Zhuykov  <zhroma@ispras.ru>
+
+	* ddg.c (create_ddg): Fix intendation.
+	(set_recurrence_length): Likewise.
+	(create_ddg_all_sccs): Likewise.
+
 2020-03-10  Jakub Jelinek  <jakub@redhat.com>
 
 	PR target/94088
diff --git a/gcc/ddg.c b/gcc/ddg.c
index aae92adf89a..ca8cb74823d 100644
--- a/gcc/ddg.c
+++ b/gcc/ddg.c
@@ -633,7 +633,7 @@ create_ddg (basic_block bb, int closing_branch_deps)
       g->nodes[i].aux.count = -1;
       g->nodes[i].max_dist = XCNEWVEC (int, num_nodes);
       for (j = 0; j < num_nodes; j++)
-         g->nodes[i].max_dist[j] = -1;
+	g->nodes[i].max_dist[j] = -1;
 
       g->nodes[i++].insn = insn;
       first_note = NULL;
@@ -838,7 +838,7 @@ set_recurrence_length (ddg_scc_ptr scc)
       int length = src->max_dist[dest->cuid];
 
       if (length < 0)
-        continue;
+	continue;
 
       length += backarc->latency;
       result = MAX (result, (length / distance));
@@ -1069,8 +1069,8 @@ create_ddg_all_sccs (ddg_ptr g)
 
       n->max_dist[k] = 0;
       for (e = n->out; e; e = e->next_out)
-        if (e->distance == 0 && g->nodes[e->dest->cuid].aux.count == n->aux.count)
-          n->max_dist[e->dest->cuid] = e->latency;
+	if (e->distance == 0 && g->nodes[e->dest->cuid].aux.count == n->aux.count)
+	  n->max_dist[e->dest->cuid] = e->latency;
     }
 
   /* Run main Floid-Warshall loop.  We use only non-backarc edges
@@ -1079,19 +1079,19 @@ create_ddg_all_sccs (ddg_ptr g)
     {
       scc = g->nodes[k].aux.count;
       if (scc != -1)
-        {
-          for (i = 0; i < num_nodes; i++)
-            if (g->nodes[i].aux.count == scc)
-              for (j = 0; j < num_nodes; j++)
-                if (g->nodes[j].aux.count == scc
-                    && g->nodes[i].max_dist[k] >= 0
-                    && g->nodes[k].max_dist[j] >= 0)
-                  {
-                    way = g->nodes[i].max_dist[k] + g->nodes[k].max_dist[j];
-                    if (g->nodes[i].max_dist[j] < way)
-                      g->nodes[i].max_dist[j] = way;
-                  }
-        }
+	{
+	  for (i = 0; i < num_nodes; i++)
+	    if (g->nodes[i].aux.count == scc)
+	      for (j = 0; j < num_nodes; j++)
+		if (g->nodes[j].aux.count == scc
+		    && g->nodes[i].max_dist[k] >= 0
+		    && g->nodes[k].max_dist[j] >= 0)
+		  {
+		    way = g->nodes[i].max_dist[k] + g->nodes[k].max_dist[j];
+		    if (g->nodes[i].max_dist[j] < way)
+		      g->nodes[i].max_dist[j] = way;
+		  }
+	}
     }
 
   /* Calculate recurrence_length using max_dist info.  */


More information about the Gcc-cvs mailing list