Skip to content

Commit

Permalink
Fix unreached during dump. (#54861)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Andreenko committed Jun 28, 2021
1 parent 94f3355 commit 851eafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/ee_il_dll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -810,11 +810,11 @@ void Compiler::eeDispVar(ICorDebugInfo::NativeVarInfo* var)
}
break;

#ifndef TARGET_AMD64
case CodeGenInterface::VLT_REG_REG:
printf("%s-%s", getRegName(var->loc.vlRegReg.vlrrReg1), getRegName(var->loc.vlRegReg.vlrrReg2));
break;

#ifndef TARGET_AMD64
case CodeGenInterface::VLT_REG_STK:
if ((int)var->loc.vlRegStk.vlrsStk.vlrssBaseReg != (int)ICorDebugInfo::REGNUM_AMBIENT_SP)
{
Expand Down

0 comments on commit 851eafb

Please sign in to comment.