aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndrew Macleod <amacleod@redhat.com>2006-09-26 15:30:29 +0000
committerAndrew Macleod <amacleod@redhat.com>2006-09-26 15:30:29 +0000
commitd02b7175cbace39c363541d64ca11a17140ec9ac (patch)
treee05ee146daa1846b5586949b30e510ea73236203 /gcc
parenta226e371552ed5bbb4b8b35bae483a872b512a52 (diff)
Add comment and remove -fno-tree-lrs from testcase
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/out-of-ssa-the-sequel@117228 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/max-1.c2
-rw-r--r--gcc/tree-outof-ssa.c5
4 files changed, 14 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ca2ed9f3caa..f3d861909ce 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2006-09-26 Andrew MacLeod <amacleod@redhat.com>
+
+ * tree-outof-ssa.c (build_ssa_conflict_graph): Add comments.
+
2006-09-25 Andrew Macleod <amacleod@redhat.com>
* tree-ssa-ter.c (struct temp_expr_table_d): Rensame fields, add
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 4aa506fca6b..b84ce584a41 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2006-09-26 Andrew MacLeod <amacleod@redhat.com>
+
+ * gcc.dg/max-1.c: Remove reference to -fno-tree-lrs option.
+
2006-06-20 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/28052
diff --git a/gcc/testsuite/gcc.dg/max-1.c b/gcc/testsuite/gcc.dg/max-1.c
index 02aaa46c3b5..39584c113ad 100644
--- a/gcc/testsuite/gcc.dg/max-1.c
+++ b/gcc/testsuite/gcc.dg/max-1.c
@@ -1,7 +1,7 @@
/* PR middle-end/18548 */
/* Test case reduced by Andrew Pinski <pinskia@physics.uc.edu> */
/* { dg-do run } */
-/* { dg-options "-O1 -fno-tree-lrs" } */
+/* { dg-options "-O1 " } */
/* m32c has varying sized pointers */
/* { dg-skip-if "" { "m32c-*-*" } { "*" } { "-mcpu=m32c" "-mcpu=m32cm" } } */
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c
index 9306f82e69a..97619aebfc9 100644
--- a/gcc/tree-outof-ssa.c
+++ b/gcc/tree-outof-ssa.c
@@ -941,6 +941,11 @@ live_track_add_conflicts (live_track_p ptr, conflict_graph graph)
}
+/* Build a conflict graph based on LIVEINFO. Any partitions which are in the
+ partition view of the var_map liveinfo is based on get entires in the
+ conflict graph. Only conflicts between ssa_name partitions with the same
+ base variableare added. */
+
static conflict_graph
build_ssa_conflict_graph (tree_live_info_p liveinfo)
{