dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] pnetlib ChangeLog tests/runtime/System/Runtime/...


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] pnetlib ChangeLog tests/runtime/System/Runtime/...
Date: Sat, 17 Feb 2007 15:22:37 +0000

CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnetlib
Changes by:     Klaus Treichel <ktreichel>      07/02/17 15:22:37

Modified files:
        .              : ChangeLog 
        tests/runtime/System/Runtime/CompilerServices: 
                                                       TestCompilerServices.cs 

Log message:
        2007-02-17  Klaus Treichel  <address@hidden>
        
                * 
tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs:
                Set the not inlinable attribute for the methods to run class 
constructors
                so that the behavior is the same wether inlining is enabled or 
not.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnetlib/ChangeLog?cvsroot=dotgnu-pnet&r1=1.2477&r2=1.2478
http://cvs.savannah.gnu.org/viewcvs/pnetlib/tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs?cvsroot=dotgnu-pnet&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/ChangeLog,v
retrieving revision 1.2477
retrieving revision 1.2478
diff -u -b -r1.2477 -r1.2478
--- ChangeLog   8 Feb 2007 22:57:13 -0000       1.2477
+++ ChangeLog   17 Feb 2007 15:22:37 -0000      1.2478
@@ -1,3 +1,9 @@
+2007-02-17  Klaus Treichel  <address@hidden>
+
+       * tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs:
+       Set the not inlinable attribute for the methods to run class 
constructors
+       so that the behavior is the same wether inlining is enabled or not.
+
 2007-02-06  Radek Polak  <address@hidden>
 
        * System.Drawing.Win32\DrawingWindow.cs: Fix

Index: tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs       
16 Jan 2007 08:50:00 -0000      1.2
+++ tests/runtime/System/Runtime/CompilerServices/TestCompilerServices.cs       
17 Feb 2007 15:22:37 -0000      1.3
@@ -137,16 +137,19 @@
 
        public static int value;
 
+       [MethodImpl(MethodImplOptions.NoInlining)]
        private static void RunClassConstructor(RuntimeTypeHandle type)
        {
                RuntimeHelpers.RunClassConstructor(type);
        }
 
+       [MethodImpl(MethodImplOptions.NoInlining)]
        private static void CallConstructorTestDummy()
        {
                ConstructorTest.Dummy();
        }
 
+       [MethodImpl(MethodImplOptions.NoInlining)]
        private static void CallConstructorTest2Dummy()
        {
                ConstructorTest2.Dummy();




reply via email to

[Prev in Thread] Current Thread [Next in Thread]