[Mono-bugs] [Bug 61641][Wis] Changed - Bad register allocation with `if' statements

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 15 Jul 2004 22:12:20 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by bmaurer@users.sf.net.

http://bugzilla.ximian.com/show_bug.cgi?id=61641

--- shadow/61641	2004-07-15 20:40:47.000000000 -0400
+++ shadow/61641.tmp.25615	2004-07-15 22:12:20.000000000 -0400
@@ -588,6 +588,15 @@
 
 I think the second arrangement would give better allocation.
 
 ------- Additional Comments From bmaurer@users.sf.net  2004-07-15 20:40 -------
 So obviously you cant really do the preorder visit correctly if the
 graph has cycles.
+
+------- Additional Comments From bmaurer@users.sf.net  2004-07-15 22:12 -------
+in
+http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cfganal.c?rev=1.45&content-type=text/x-cvsweb-markup
+
+flow_depth_first_order_compute
+
+The `rc' (reverse completion) order seems like what we want. I need to
+look at this more.