Browse Source

* MethodRental.cs: fixed value of JitOnDemand

svn path=/trunk/mcs/; revision=29629
Gert Driesen 21 years ago
parent
commit
bf01781d2e

+ 4 - 0
mcs/class/corlib/System.Reflection.Emit/ChangeLog

@@ -1,3 +1,7 @@
+2004-06-15  Gert Driesen <[email protected]>
+
+	* MethodRental.cs: fixed value of JitOnDemand
+
 2004-06-09  Gert Driesen <[email protected]>
 
 	* FieldBuilder.cs: fixed implementation to match MS.NET,

+ 1 - 1
mcs/class/corlib/System.Reflection.Emit/MethodRental.cs

@@ -35,7 +35,7 @@ namespace System.Reflection.Emit
 	public sealed class MethodRental {
 
 		public const int JitImmediate = 1;
-		public const int JitOnDemand = 1;
+		public const int JitOnDemand = 0;
 
 		private MethodRental() {
 		}