summaryrefslogtreecommitdiff
path: root/src/vm/eeconfig.h
diff options
context:
space:
mode:
authorManu <manu-silicon@users.noreply.github.com>2016-03-16 10:44:44 +0900
committerManu <manu-silicon@users.noreply.github.com>2016-03-16 11:05:13 +0900
commit26efa5f75632a6372070c3f71a41adf85b5ad6f6 (patch)
tree6f2f322e7aaceef3f4f7a4470b25e669cc015fb7 /src/vm/eeconfig.h
parent8546dc3c08779f75e1f71b9f1e41095c16c4f46b (diff)
downloadcoreclr-26efa5f75632a6372070c3f71a41adf85b5ad6f6.tar.gz
coreclr-26efa5f75632a6372070c3f71a41adf85b5ad6f6.tar.bz2
coreclr-26efa5f75632a6372070c3f71a41adf85b5ad6f6.zip
Update code to use COMPlus_ instead of COMPLUS_ when referencing knobs
Diffstat (limited to 'src/vm/eeconfig.h')
-rw-r--r--src/vm/eeconfig.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/eeconfig.h b/src/vm/eeconfig.h
index 7270dce2a4..002396d8e0 100644
--- a/src/vm/eeconfig.h
+++ b/src/vm/eeconfig.h
@@ -1126,10 +1126,10 @@ private: //----------------------------------------------------------------
#endif
#ifdef _TARGET_AMD64_
- // Assemblies for which we will not load a native image. This is from the COMPLUS_DisableNativeImageLoadList
+ // Assemblies for which we will not load a native image. This is from the COMPlus_DisableNativeImageLoadList
// variable / reg key. It performs the same function as the config file key "<disableNativeImageLoad>" (except
// that is it just a list of assembly names, which the config file key can specify full assembly identities).
- // This was added to support COMPLUS_UseLegacyJit, to support the rollout of RyuJIT to replace JIT64, where
+ // This was added to support COMPlus_UseLegacyJit, to support the rollout of RyuJIT to replace JIT64, where
// the user can cause the CLR to fall back to JIT64 for JITting but not for NGEN. This allows the user to
// force JITting for a specified list of NGEN assemblies.
AssemblyNamesList * pDisableNativeImageLoadList;