Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2021-04-13 10:42:50 +0300
committerGitHub <noreply@github.com>2021-04-13 10:42:50 +0300
commit5a2df345cdabb4ac7f0227ab9052fd40d34e4986 (patch)
treebdb5aa88aec5b0ee6a1a487b60e799278f08b329 /src/coreclr/inc
parentf9fcb8b0643c3ebc81f9e1733097179cebd41561 (diff)
Fix JITEEInterface::IsValueClass to return false for pointers. (#50749)
* lets VM return `isValueClass=false` for pointers. * fix assert and add a comment. * fix diffs. * fix crossgen2 part. * Update JITEEVersionIdentifier.
Diffstat (limited to 'src/coreclr/inc')
-rw-r--r--src/coreclr/inc/jiteeversionguid.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/coreclr/inc/jiteeversionguid.h b/src/coreclr/inc/jiteeversionguid.h
index cda748635c7..5e6a2ef9899 100644
--- a/src/coreclr/inc/jiteeversionguid.h
+++ b/src/coreclr/inc/jiteeversionguid.h
@@ -16,7 +16,7 @@
// Note that this file is parsed by some tools, namely superpmi.py, so make sure the first line is exactly
// of the form:
//
-// constexpr GUID JITEEVersionIdentifier = { /* a7bb194e-4e7c-4850-af12-ea9f30ea5a13 */
+// constexpr GUID JITEEVersionIdentifier = { /* 1776ab48-edfa-49be-a11f-ec216b28174c */
//
// (without the leading slashes or spaces).
//
@@ -43,11 +43,11 @@ typedef const GUID *LPCGUID;
#define GUID_DEFINED
#endif // !GUID_DEFINED
-constexpr GUID JITEEVersionIdentifier = { /* a1f5e9a1-ee44-42f9-9319-e2a2dbf8c5c9 */
- 0xa1f5e9a1,
- 0xee44,
- 0x42f9,
- {0x93, 0x19, 0xe2, 0xa2, 0xdb, 0xf8, 0xc5, 0xc9}
+constexpr GUID JITEEVersionIdentifier = { /* 1776ab48-edfa-49be-a11f-ec216b28174c */
+ 0x1776ab48,
+ 0xedfa,
+ 0x49be,
+ {0xa1, 0x1f, 0xec, 0x21, 0x6b, 0x28, 0x17, 0x4c}
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////