Skip to content

Commit f285289

Browse files
authored
Do not report inlining decision to runtime in DEBUG mode (#113700)
1 parent 254b55a commit f285289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/fginline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1165,7 +1165,7 @@ void Compiler::fgNoteNonInlineCandidate(Statement* stmt, GenTreeCall* call)
11651165
return;
11661166
}
11671167

1168-
InlineResult inlineResult(this, call, nullptr, "fgNoteNonInlineCandidate", false);
1168+
InlineResult inlineResult(this, call, nullptr, "fgNoteNonInlineCandidate", true);
11691169
InlineObservation currentObservation = InlineObservation::CALLSITE_NOT_CANDIDATE;
11701170

11711171
// Try and recover the reason left behind when the jit decided

0 commit comments

Comments
 (0)