[Mono-bugs] [Bug 38017][Nor] Changed - assertion in JIT

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Mon, 24 Feb 2003 05:52:03 -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 dietmar@ximian.com.

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

--- shadow/38017	Sat Feb 22 14:26:08 2003
+++ shadow/38017.tmp.7753	Mon Feb 24 05:52:03 2003
@@ -1,13 +1,13 @@
 Bug#: 38017
 Product: Mono/Runtime
 Version: unspecified
 OS: Debian Woody
 OS Details: 
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: WONTFIX
 Severity: Unknown
 Priority: Normal
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: vargaz@freemail.hu               
 QAContact: mono-bugs@ximian.com
@@ -70,6 +70,17 @@
    static public void Main() {
      foo (OpCodes.Calli, (null == typeof(void)) ? (object)null :
 (object)null);
    }
 }
 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+
+------- Additional Comments From dietmar@ximian.com  2003-02-24 05:52 -------
+The problem is that the old JIT cant handle valuetypes at BB
+boundaries. The problem is the use of the ? operator, which introduces
+non-empty runtime-stacks at BB boundaries. If you use a if() then ...
+you can avoid that problem.
+
+The new JIT can handle this whitout problems, but its not possible to
+fix that in the current JIT.
+
+- Dietmar