Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/IL/Stubs/DelegateThunks.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/Stubs/DelegateThunks.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/Stubs/DelegateThunks.cs b/src/coreclr/tools/Common/TypeSystem/IL/Stubs/DelegateThunks.cs
index 55037d70fe8..99834d7cb23 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/Stubs/DelegateThunks.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/Stubs/DelegateThunks.cs
@@ -207,7 +207,7 @@ namespace Internal.IL.Stubs
codeStream.Emit(ILOpcode.box, emitter.NewToken(boxThisType));
}
}
-
+
codeStream.Emit(ILOpcode.call, emitter.NewToken(SystemDelegateType.GetKnownMethod("GetActualTargetFunctionPointer", null)));
MethodSignature targetSignature = new MethodSignature(0, 0, Signature.ReturnType, parameters);
@@ -346,7 +346,7 @@ namespace Internal.IL.Stubs
codeStream.EmitLdc(0);
codeStream.EmitStLoc(iteratorLocal);
- // Loop across every element of the array.
+ // Loop across every element of the array.
ILCodeLabel startOfLoopLabel = emitter.NewCodeLabel();
codeStream.EmitLabel(startOfLoopLabel);
@@ -494,7 +494,7 @@ namespace Internal.IL.Stubs
public override MethodIL EmitIL()
{
// We will generate the following code:
- //
+ //
// object ret;
// object[] args = new object[parameterCount];
// args[0] = param0;