aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Common/AddressTable.cs
diff options
context:
space:
mode:
authorFICTURE7 <FICTURE7@gmail.com>2022-09-09 03:14:08 +0400
committerGitHub <noreply@github.com>2022-09-08 20:14:08 -0300
commitee1825219b8ccca13df7198d4e9ffb966e44c883 (patch)
tree5d44ffc535393b574ab45c3e206264af948f3f6c /ARMeilleure/Common/AddressTable.cs
parent7baa08dcb4b38fe36bb19bf84b3fcd386d143463 (diff)
Clean up rejit queue (#2751)1.1.253
Diffstat (limited to 'ARMeilleure/Common/AddressTable.cs')
-rw-r--r--ARMeilleure/Common/AddressTable.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ARMeilleure/Common/AddressTable.cs b/ARMeilleure/Common/AddressTable.cs
index e03a38e6..7cb83fdd 100644
--- a/ARMeilleure/Common/AddressTable.cs
+++ b/ARMeilleure/Common/AddressTable.cs
@@ -1,4 +1,4 @@
-using ARMeilleure.Diagnostics.EventSources;
+using ARMeilleure.Diagnostics;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
@@ -218,7 +218,7 @@ namespace ARMeilleure.Common
_pages.Add(page);
- AddressTableEventSource.Log.Allocated(size, leaf);
+ TranslatorEventSource.Log.AddressTableAllocated(size, leaf);
return page;
}