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

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Thu, 13 Feb 2003 14:57:46 -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 vargaz@freemail.hu.

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

--- shadow/38017	Thu Feb 13 14:57:46 2003
+++ shadow/38017.tmp.2402	Thu Feb 13 14:57:46 2003
@@ -0,0 +1,34 @@
+Bug#: 38017
+Product: Mono/Runtime
+Version: unspecified
+OS: Debian Woody
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: vargaz@freemail.hu               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: assertion in JIT
+
+Hi,
+
+ The following code causes the JIT to assert in mono_store_tree():
+
+using System;
+using System.Reflection.Emit;
+
+class Bug {
+
+   static void foo (OpCode i, object o) {
+   }
+
+   static public void Main() {
+     foo (OpCodes.Calli, (null == typeof(void)) ? null : null);
+   }
+}