[Mono-bugs] [Bug 52707][Nor] Changed - Invalid IL in ICSharpCode.SharpZipLib -- makes AOT fail

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 18 Jan 2004 01:11:29 -0500 (EST)


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 miguel@ximian.com.

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

--- shadow/52707	2004-01-18 01:09:10.000000000 -0500
+++ shadow/52707.tmp.25563	2004-01-18 01:11:29.000000000 -0500
@@ -5,13 +5,13 @@
 OS Details: 
 Status: NEW   
 Resolution: 
 Severity: Unknown
 Priority: Normal
 Component: C#
-AssignedTo: mono-bugs@ximian.com                            
+AssignedTo: martin@ximian.com                            
 ReportedBy: gonzalo@ximian.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
 Summary: Invalid IL in ICSharpCode.SharpZipLib -- makes AOT fail
@@ -117,6 +117,15 @@
 	    continue;
 	}
     }
 }
 
 This is a regression since 0.29.
+
+------- Additional Comments From miguel@ximian.com  2004-01-18 01:11 -------
+I am CCing Martin.
+
+This seems to be flow analysis not detecting that the loop can be
+broken from the break (it gets confused probably, since there is 
+continue there).
+
+Removing the continue fixes the code.