[Mono-bugs] [Bug 52037][Nor] Changed - System.DateTime.get_Now fails on execution

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 17 Dec 2003 11:27:59 -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 piyush.garyali@honeywell.com.

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

--- shadow/52037	2003-12-17 07:38:54.000000000 -0500
+++ shadow/52037.tmp.13717	2003-12-17 11:27:59.000000000 -0500
@@ -222,6 +222,27 @@
 The hashtable/isnan bug has been fixed in cvs on the 15th.
 make sure you have updated from cvs the mini-ppc.c file.
 Grep for CEE_CONV_R8 and a few lines later you'll find:
 ppc_load (code, ppc_r11, &adjust_val);
 The ppc assembly you pasted is the (wrong) assembly that was generated
 before the fix.
+
+------- Additional Comments From piyush.garyali@honeywell.com  2003-12-17 11:27 -------
+instead of ppc_load(code, ppc_r11, &adjust_val) I have ppc_li(code, 
+ppc_r11, &adjust_val) in my code and I checked it with the latest in 
+cvs and it reads the same.
+
+I am still getting the Access Voilation when running the following 
+assembly lines which is generated
+
+0x8f6b30:	39600138   li        r11, 0x138
+0x8f6b34:	c80b0000   lfd       f0, 0(r11)
+                           ^^^^^^^^^^^^^^^^^^^^^
+0x1400:         << Unreadable Memory >>
+
+The register contents are the following
+r11	0x00000138
+
+I tried changing it to ppc_load to see if that helps but it doesnt as 
+it gives a Warning in the compilation phase itself. So I guess I am 
+with the same code as in cvs
+