Skip to content

Commit 34c34c5

Browse files
Fix JitDump for missing string (#99094)
1 parent 7f851aa commit 34c34c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coreclr/jit/importer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5421,7 +5421,7 @@ GenTree* Compiler::impOptimizeCastClassOrIsInst(GenTree* op1, CORINFO_RESOLVED_T
54215421
//
54225422
// Notes:
54235423
// May expand into a series of runtime checks or a helper call.
5424-
5424+
//
54255425
GenTree* Compiler::impCastClassOrIsInstToTree(
54265426
GenTree* op1, GenTree* op2, CORINFO_RESOLVED_TOKEN* pResolvedToken, bool isCastClass, IL_OFFSET ilOffset)
54275427
{
@@ -5466,7 +5466,7 @@ GenTree* Compiler::impCastClassOrIsInstToTree(
54665466

54675467
if (!shouldExpandEarly)
54685468
{
5469-
JITDUMP("\nImporting %s as call because %s\n", isCastClass ? "castclass" : "isinst");
5469+
JITDUMP("\nImporting %s as call\n", isCastClass ? "castclass" : "isinst");
54705470

54715471
// If we CSE this class handle we prevent assertionProp from making SubType assertions
54725472
// so instead we force the CSE logic to not consider CSE-ing this class handle.

0 commit comments

Comments
 (0)