[Mono-bugs] [Bug 74647][Wis] Changed - Assembler does not handle escaped array definitions
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 18 Apr 2005 08:54:24 -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 radical@gmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=74647
--- shadow/74647 2005-04-18 04:56:47.000000000 -0400
+++ shadow/74647.tmp.11498 2005-04-18 08:54:24.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 74647
Product: Mono: Compilers
Version: 1.0
-OS:
+OS: unknown
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: FIXED
+Severity: Unknown
Priority: Wishlist
Component: IL assembler
AssignedTo: mono-bugs@ximian.com
ReportedBy: jackson@ximian.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -26,6 +26,24 @@
------- Additional Comments From jackson@ximian.com 2005-04-18 04:56 -------
Created an attachment (id=14960)
proposed patch
+
+------- Additional Comments From radical@gmail.com 2005-04-18 08:54 -------
+ilasm -show_tokens case.il
+
+
+token: '261 : System.' ->>> it has an extra dot..
+token: '266 : .'
+token: '260 : Int32[,]'
+
+Doing monodis on the .exe, shows
+
+** (process:26634): WARNING **: Missing method .ctor in assembly
+/home/ritvik/src/mcs/a.exe, type System..Int32[,]
+IL_0001: call instance void [mscorlib]System..Int32[,]::.ctor()
+
+It has been taken as "System..Int32[,]" ..
+
+Attached is the updated patch.. It's probably hackish.. :/