[Mono-bugs] [Bug 57058][Maj] New - Unknow operator x86_lea (C#)
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 15 Apr 2004 08:03:26 -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 gaglia81@everyday.com.
http://bugzilla.ximian.com/show_bug.cgi?id=57058
--- shadow/57058 2004-04-15 08:03:26.000000000 -0400
+++ shadow/57058.tmp.24467 2004-04-15 08:03:26.000000000 -0400
@@ -0,0 +1,48 @@
+Bug#: 57058
+Product: Mono: Runtime
+Version: unspecified
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: gaglia81@everyday.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Unknow operator x86_lea (C#)
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+During JIT operator '=' cannot assign an element from a single array to a
+double array.
+
+
+
+Steps to reproduce the problem:
+e.g.
+string[,] doubleArray = new string[1,1];
+string[] singleArray = new string[1];
+...
+...
+doubleArray[0,0] = singleArray[0]; // Unknow operator x86_lea
+
+Actual Results:
+Unknow operator x86_lea
+Aborting...
+
+
+Expected Results:
+Correct assignment
+
+How often does this happen?
+Always, in version 0.30, 0.31
+
+Additional Information:
+It works when:
+doubleArray[0,0] = "" + singleArray[0];