We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348f1ed commit 800283dCopy full SHA for 800283d
src/coreclr/jit/codegencommon.cpp
@@ -139,9 +139,15 @@ CodeGen::CodeGen(Compiler* theCompiler) : CodeGenInterface(theCompiler)
139
140
compiler->genCallSite2DebugInfoMap = nullptr;
141
142
+#ifdef USE_GC_INFO_DECODER
143
+ // TODO: VS just to check.
144
+ SetFullPtrRegMapRequired(true);
145
+#else
146
/* Assume that we not fully interruptible */
147
148
SetInterruptible(false);
149
+#endif
150
+
151
#if defined(TARGET_ARMARCH) || defined(TARGET_LOONGARCH64) || defined(TARGET_RISCV64)
152
SetHasTailCalls(false);
153
#endif // TARGET_ARMARCH || TARGET_LOONGARCH64 || TARGET_RISCV64
0 commit comments