From da4b87b09c5e02ceb1df31ec0db1ffd8b15520c6 Mon Sep 17 00:00:00 2001 From: noahfalk Date: Tue, 5 Feb 2019 00:04:58 -0800 Subject: [PATCH] Merge "Fix SOS GCInfo for Arm/Arm64" PR #22188 from coreclr SOS. (work originally by mikem, I just split his mega-commit so history would a little more understandable) --- src/SOS/gcdump/gcdumpnonx86.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/SOS/gcdump/gcdumpnonx86.cpp b/src/SOS/gcdump/gcdumpnonx86.cpp index 766b15423..763503764 100644 --- a/src/SOS/gcdump/gcdumpnonx86.cpp +++ b/src/SOS/gcdump/gcdumpnonx86.cpp @@ -285,7 +285,11 @@ size_t GCDump::DumpGCTable(PTR_CBYTE gcInfoBlock, | DECODE_GENERICS_INST_CONTEXT | DECODE_GC_LIFETIMES | DECODE_PROLOG_LENGTH - | DECODE_RETURN_KIND), + | DECODE_RETURN_KIND +#if defined(_TARGET_ARM_) || defined(_TARGET_ARM64_) + | DECODE_HAS_TAILCALLS +#endif + ), 0); if (NO_SECURITY_OBJECT != hdrdecoder.GetSecurityObjectStackSlot() || -- 2.34.1