summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorEugene Zemtsov <e.zemtsov@gmail.com>2015-03-22 17:07:17 -0700
committerEugene Zemtsov <e.zemtsov@gmail.com>2015-03-22 17:07:17 -0700
commita7376d1fe614a6512329628e0982298d17e68a38 (patch)
tree98cab4ad2e0b0fba16f77ff77cd05754f71413e0 /src/debug
parent6ad823d1651c2d741f2e746320cc0ec28f520624 (diff)
downloadcoreclr-a7376d1fe614a6512329628e0982298d17e68a38.tar.gz
coreclr-a7376d1fe614a6512329628e0982298d17e68a38.tar.bz2
coreclr-a7376d1fe614a6512329628e0982298d17e68a38.zip
Replace PAL_GetCoreClrModuleBase() with PAL_GetPalModuleBase()
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/ee/dactable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/dactable.cpp b/src/debug/ee/dactable.cpp
index 43b27996d6..019e1dd822 100644
--- a/src/debug/ee/dactable.cpp
+++ b/src/debug/ee/dactable.cpp
@@ -53,7 +53,7 @@ DacGlobals g_dacTable;
// DAC global pointer table initialization
void DacGlobals::Initialize()
{
- TADDR baseAddress = PTR_TO_TADDR(PAL_GetCoreClrModuleBase());
+ TADDR baseAddress = PTR_TO_TADDR(PAL_GetPalModuleBase());
g_dacTable.InitializeEntries(baseAddress);
#ifdef FEATURE_SVR_GC
g_dacTable.InitializeSVREntries(baseAddress);