summaryrefslogtreecommitdiff
path: root/src/utilcode/jithost.cpp
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2016-02-25 11:41:31 -0800
committerdotnet-bot <dotnet-bot@microsoft.com>2016-02-25 11:41:31 -0800
commit8ce6630f106425cf6064cfbb7f633af39b3c7973 (patch)
treee3f2ed0cd3448128dba3eacc6f6c21a65a08b506 /src/utilcode/jithost.cpp
parent97545d6f772546e4737c112007d687c6fbc640b4 (diff)
downloadcoreclr-8ce6630f106425cf6064cfbb7f633af39b3c7973.tar.gz
coreclr-8ce6630f106425cf6064cfbb7f633af39b3c7973.tar.bz2
coreclr-8ce6630f106425cf6064cfbb7f633af39b3c7973.zip
Roll back change 1578859 on behalf of pagavlin. Change broke SuperPMI.
[tfs-changeset: 1578925]
Diffstat (limited to 'src/utilcode/jithost.cpp')
-rw-r--r--src/utilcode/jithost.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utilcode/jithost.cpp b/src/utilcode/jithost.cpp
index 3174aa6188..412cc47786 100644
--- a/src/utilcode/jithost.cpp
+++ b/src/utilcode/jithost.cpp
@@ -41,7 +41,7 @@ int JitHost::getIntConfigValue(const wchar_t* name, int defaultValue)
WRAPPER_NO_CONTRACT;
// Translate JIT call into runtime configuration query
- CLRConfig::ConfigDWORDInfo info{ name, defaultValue, CLRConfig::EEConfig_default };
+ CLRConfig::ConfigDWORDInfo info{ name, defaultValue, CLRConfig::REGUTIL_default };
// Perform a CLRConfig look up on behalf of the JIT.
return CLRConfig::GetConfigValue(info);
@@ -52,7 +52,7 @@ const wchar_t* JitHost::getStringConfigValue(const wchar_t* name)
WRAPPER_NO_CONTRACT;
// Translate JIT call into runtime configuration query
- CLRConfig::ConfigStringInfo info{ name, CLRConfig::EEConfig_default };
+ CLRConfig::ConfigStringInfo info{ name, CLRConfig::REGUTIL_default };
// Perform a CLRConfig look up on behalf of the JIT.
return CLRConfig::GetConfigValue(info);