[Mono-bugs] [Bug 41954][Nor] Changed - mcs uses ldind.ref instead of ldind.i

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Sun, 27 Apr 2003 13:38:56 -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 miguel@ximian.com.

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

--- shadow/41954	Sun Apr 27 13:04:47 2003
+++ shadow/41954.tmp.10163	Sun Apr 27 13:38:56 2003
@@ -1,13 +1,13 @@
 Bug#: 41954
 Product: Mono/MCS
 Version: unspecified
 OS: unknown
 OS Details: 
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Normal
 Component: Misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: miguel@ximian.com               
 QAContact: mono-bugs@ximian.com
@@ -101,6 +101,9 @@
 When dereferencing int** there is no reference type involved, so
 ldind.ref is completely wrong. There is a pointer involved and csc
 uses ldind.i (ldind.u whould have been fine as well, I guess).
 The number of peverify errors is larger with csc only because it
 doesn't set initlocals when using /unsafe: mcs should likely use this
 same optimization.
+
+------- Additional Comments From miguel@ximian.com  2003-04-27 13:38 -------
+Thanks for the explanation.  I made it use ldind.i for pointers now.