Comments
Patch
@@ -1,3 +1,8 @@
+2011-01-21 Vladimir Kargov <kargov@gmail.com>
+
+ * graphite-scop-detection.c (canonicalize_loop_closed_ssa): Free
+ invalid postdominance info.
+
2011-01-21 Jeff Law <law@redhat.com>
PR rtl-optimization/41619
@@ -1,3 +1,8 @@
+2011-01-05 Vladimir Kargov <kargov@gmail.com>
+
+ * graphite-scop-detection.c (canonicalize_loop_closed_ssa): Free
+ invalid postdominance info
+
2010-12-29 Sebastian Pop <sebastian.pop@amd.com>
* Makefile.in (graphite-opencl-codegen.o): Update dependences.
@@ -1249,6 +1249,10 @@ canonicalize_loop_closed_ssa (loop_p loop)
}
}
}
+
+ /* The code above does not properly handle changes in the post dominance
+ information (yet). */
+ free_dominance_info (CDI_POST_DOMINATORS);
}
/* Converts the current loop closed SSA form to a canonical form
From: grosser <grosser@138bc75d-0d04-0410-961f-82ee72b054a4> 2011-01-21 Vladimir Kargov <kargov@gmail.com> * graphite-scop-detection.c (canonicalize_loop_closed_ssa): Free invalid postdominance info. --- gcc/ChangeLog | 5 +++++ gcc/ChangeLog.graphite | 5 +++++ gcc/graphite-scop-detection.c | 4 ++++ 3 files changed, 14 insertions(+), 0 deletions(-)