summaryrefslogtreecommitdiff
path: root/src/inc
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-01-31 07:58:38 -0800
committerGitHub <noreply@github.com>2018-01-31 07:58:38 -0800
commitc36ea9f76b842fa5dd1c375fb6303d1f44b65fde (patch)
treed3cdbe1d65de32342a9f5d7199356f679fa54599 /src/inc
parent181680249af92aa45c8fb44a3ee865c7b61fd765 (diff)
parent0623a4f6f53c973ecea71db9d12faf193aa0bcd3 (diff)
downloadcoreclr-c36ea9f76b842fa5dd1c375fb6303d1f44b65fde.tar.gz
coreclr-c36ea9f76b842fa5dd1c375fb6303d1f44b65fde.tar.bz2
coreclr-c36ea9f76b842fa5dd1c375fb6303d1f44b65fde.zip
Merge pull request #16102 from sdmaclea/PR-CORINFO_HELP_THROW_TYPE_NOT_SUPPORTED
CORINFO_HELP_THROW_TYPE_NOT_SUPPORTED
Diffstat (limited to 'src/inc')
-rw-r--r--src/inc/corinfo.h11
-rw-r--r--src/inc/jithelpers.h1
2 files changed, 7 insertions, 5 deletions
diff --git a/src/inc/corinfo.h b/src/inc/corinfo.h
index 8292d5ad33..f3b509c5ad 100644
--- a/src/inc/corinfo.h
+++ b/src/inc/corinfo.h
@@ -213,11 +213,11 @@ TODO: Talk about initializing strutures before use
#define SELECTANY extern __declspec(selectany)
#endif
-SELECTANY const GUID JITEEVersionIdentifier = { /* e042cffc-cf03-4315-96b9-5fd01dc15923 */
- 0xe042cffc,
- 0xcf03,
- 0x4315,
- {0x96, 0xb9, 0x5f, 0xd0, 0x1d, 0xc1, 0x59, 0x23}
+SELECTANY const GUID JITEEVersionIdentifier = { /* 0ba106c8-81a0-407f-99a1-928448c1eb62 */
+ 0x0ba106c8,
+ 0x81a0,
+ 0x407f,
+ {0x99, 0xa1, 0x92, 0x84, 0x48, 0xc1, 0xeb, 0x62}
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -643,6 +643,7 @@ enum CorInfoHelpFunc
CORINFO_HELP_THROW_ARGUMENTEXCEPTION, // throw ArgumentException
CORINFO_HELP_THROW_ARGUMENTOUTOFRANGEEXCEPTION, // throw ArgumentOutOfRangeException
CORINFO_HELP_THROW_PLATFORM_NOT_SUPPORTED, // throw PlatformNotSupportedException
+ CORINFO_HELP_THROW_TYPE_NOT_SUPPORTED, // throw TypeNotSupportedException
CORINFO_HELP_JIT_PINVOKE_BEGIN, // Transition to preemptive mode before a P/Invoke, frame is the first argument
CORINFO_HELP_JIT_PINVOKE_END, // Transition to cooperative mode after a P/Invoke, frame is the first argument
diff --git a/src/inc/jithelpers.h b/src/inc/jithelpers.h
index 1419cda2de..2238aa87e0 100644
--- a/src/inc/jithelpers.h
+++ b/src/inc/jithelpers.h
@@ -347,6 +347,7 @@
JITHELPER(CORINFO_HELP_THROW_ARGUMENTEXCEPTION, JIT_ThrowArgumentException, CORINFO_HELP_SIG_REG_ONLY)
JITHELPER(CORINFO_HELP_THROW_ARGUMENTOUTOFRANGEEXCEPTION, JIT_ThrowArgumentOutOfRangeException, CORINFO_HELP_SIG_REG_ONLY)
JITHELPER(CORINFO_HELP_THROW_PLATFORM_NOT_SUPPORTED, JIT_ThrowPlatformNotSupportedException, CORINFO_HELP_SIG_REG_ONLY)
+ JITHELPER(CORINFO_HELP_THROW_TYPE_NOT_SUPPORTED, JIT_ThrowTypeNotSupportedException, CORINFO_HELP_SIG_REG_ONLY)
JITHELPER(CORINFO_HELP_JIT_PINVOKE_BEGIN, NULL, CORINFO_HELP_SIG_UNDEF)
JITHELPER(CORINFO_HELP_JIT_PINVOKE_END, NULL, CORINFO_HELP_SIG_UNDEF)