[Mono-bugs] [Bug 68136][Min] New - Mono AOT compiler fails on array creation

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 12 Oct 2004 18:04:54 -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 nazgul@omega.pl.

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

--- shadow/68136	2004-10-12 18:04:54.000000000 -0400
+++ shadow/68136.tmp.25672	2004-10-12 18:04:54.000000000 -0400
@@ -0,0 +1,46 @@
+Bug#: 68136
+Product: Mono: Runtime
+Version: unspecified
+OS: 
+OS Details: Linux Mandrake, mono 1.1.1
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: nazgul@omega.pl               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Mono AOT compiler fails on array creation
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+Assertion fails in aot.c during AOT compiling of 
+
+public class A {
+  static void Main () {
+    int[,] y = new int[100, 100];
+  }
+}
+
+Steps to reproduce the problem:
+1. Compile above program: mcs test.cs
+2. mono --aot test.exe
+3. see the assertion
+
+Actual Results:
+** ERROR **: file aot.c: line 1123 (emit_method): assertion failed:
+(mono_metadata_token_table (token) == MONO_TABLE_METHOD)
+
+
+Expected Results:
+Successful AOT compilation
+
+How often does this happen? 
+Always
+
+Additional Information: