[Mono-bugs] [Bug 55937][Wis] Changed - [PATCH] When initing an array we emit a temp when a dup would suffice

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 23 Mar 2004 11:41:47 -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 bmaurer@users.sf.net.

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

--- shadow/55937	2004-03-22 23:39:00.000000000 -0500
+++ shadow/55937.tmp.15429	2004-03-23 11:41:47.000000000 -0500
@@ -10,13 +10,12 @@
 Component: C#
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: bmaurer@users.sf.net               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
-Cc: 
 Summary: [PATCH] When initing an array we emit a temp when a dup would suffice
 
 In array initilization, we create a temporary variable, when we could just
 use `dup' and avoid the local.
 
 This reduces the size of the code.
@@ -49,6 +48,9 @@
 // set 1
 
 ldloc.x
 // set 2
 
 ...
+
+------- Additional Comments From bmaurer@users.sf.net  2004-03-23 11:41 -------
+Miguel, can you review?