diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-01-23 19:37:53 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 22:37:53 +0000 |
commit | a1a4771ac1de95f2410c7fb8dfaf4a5986e5ebc6 (patch) | |
tree | b79abb40024184b18b2ff821490de4ad5e7b9683 /ARMeilleure/Instructions/NativeInterface.cs | |
parent | 2fd819613ffcede43562b333602d17fa79c9751d (diff) |
Remove use of GetFunctionPointerForDelegate to get JIT cache function pointer (#4337)1.1.594
* Remove use of GetFunctionPointerForDelegate to get JIT cache function pointer
* Rename FuncPtr to FuncPointer
Diffstat (limited to 'ARMeilleure/Instructions/NativeInterface.cs')
-rw-r--r-- | ARMeilleure/Instructions/NativeInterface.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Instructions/NativeInterface.cs b/ARMeilleure/Instructions/NativeInterface.cs index 2ac748a9..57964cc8 100644 --- a/ARMeilleure/Instructions/NativeInterface.cs +++ b/ARMeilleure/Instructions/NativeInterface.cs @@ -191,7 +191,7 @@ namespace ARMeilleure.Instructions { TranslatedFunction function = Context.Translator.GetOrTranslate(address, GetContext().ExecutionMode); - return (ulong)function.FuncPtr.ToInt64(); + return (ulong)function.FuncPointer.ToInt64(); } public static void InvalidateCacheLine(ulong address) |