From dc0ebd337455f3649d35370550aaae18ba59e275 Mon Sep 17 00:00:00 2001 From: Marcel Koester Date: Thu, 24 Nov 2022 22:56:36 +0000 Subject: [PATCH 1/2] Changed visibility of Interop.WriteImplementation. --- Src/ILGPU/Interop.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/ILGPU/Interop.cs b/Src/ILGPU/Interop.cs index 8f8926d67..6c91e1ffc 100644 --- a/Src/ILGPU/Interop.cs +++ b/Src/ILGPU/Interop.cs @@ -244,7 +244,7 @@ internal static string GetWriteLineFormat(string format) /// /// The expression format to write. /// All elements to write in string format. - private static void WriteImplementation( + internal static void WriteImplementation( string format, params string[] elements) => Console.Write(format, elements); From 3722ce954c3e910595e25a1cea62505037808ff3 Mon Sep 17 00:00:00 2001 From: Marcel Koester Date: Thu, 26 Jan 2023 20:48:36 +0100 Subject: [PATCH 2/2] Exposed Method of MethodEmitter in RuntimeSystem. --- Src/ILGPU/RuntimeSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/ILGPU/RuntimeSystem.cs b/Src/ILGPU/RuntimeSystem.cs index 5afb90e12..5c9e60eb8 100644 --- a/Src/ILGPU/RuntimeSystem.cs +++ b/Src/ILGPU/RuntimeSystem.cs @@ -107,7 +107,7 @@ public MethodEmitter( /// /// Returns the associated method builder. /// - private DynamicMethod Method { get; } + internal DynamicMethod Method { get; } /// /// Returns the internal IL generator.