* BinaryExpression.cs (EmitCoalesce): fix setup_null. svn path=/trunk/mcs/; revision=96368
@@ -250,6 +250,7 @@ namespace System.Linq.Expressions {
LocalBuilder ret = ig.DeclareLocal (Type);
ig.Emit (OpCodes.Ldloca, ret);
ig.Emit (OpCodes.Initobj, Type);
+ ig.Emit (OpCodes.Ldloc, ret);
// exit:
ig.MarkLabel (exit);
@@ -1,3 +1,7 @@
+2008-02-21 Jb Evain <[email protected]>
+
+ * BinaryExpression.cs (EmitCoalesce): fix setup_null.
2008-02-21 Jb Evain <[email protected]>
* BinaryExpression.cs (Emit): fix the both_are_null case.