[Mono-bugs] [Bug 77490][Maj] Changed - [PPC] Jagged Array(type double) initialization fails

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sat Jul 15 17:07:48 EDT 2006


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 miguel at ximian.com.

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

--- shadow/77490	2006-02-07 08:03:44.000000000 -0500
+++ shadow/77490.tmp.26834	2006-07-15 17:07:48.000000000 -0400
@@ -5,18 +5,18 @@
 OS Details: Linux Running on Power PC
 Status: NEW   
 Resolution: 
 Severity: Unknown
 Priority: Major
 Component: interop
-AssignedTo: mono-bugs at ximian.com                            
+AssignedTo: lupus at ximian.com                            
 ReportedBy: sunvenk at hotmail.com               
 QAContact: mono-bugs at ximian.com
 TargetMilestone: ---
 URL: 
-Summary: Jagged Array(type double) initialization fails
+Summary: [PPC] Jagged Array(type double) initialization fails
 
 Please fill in this template when reporting a bug, unless you know what 
 you are doing.
 Description of Problem:
 
 
@@ -43,6 +43,29 @@
 
 Additional Information:
 
 ------- Additional Comments From vargaz at gmail.com  2006-02-07 08:03 -------
 This works on x86 so it might be a PPC only bug.
 
+
+------- Additional Comments From miguel at ximian.com  2006-07-15 17:07 -------
+Looking for confirmation on this bug. 
+
+Full sample:
+
+using System;
+
+class X {
+static void Main ()
+{
+double[,] AX = new double[2,4]  {
+{-.099, -.081, -.081, -.063},
+{-.048, -.038, -.040, -.021}};
+Console.WriteLine("AX values");
+for(int i=0;i<2;i++)
+  for(int j=0;j<4;j++)
+    Console.Write(",AX[{0},{1}]={2}",i,j,AX[i,j]);
+
+
+}
+}
+


More information about the mono-bugs mailing list