Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Disable the assert.
It was failing on DevDiv_280120 arm32 linux, did not repro with an altjit.
  • Loading branch information
Sergey committed Jul 15, 2021
commit ab28a4e81a1c2a839d574d680c2dccb3d2ae5686
2 changes: 0 additions & 2 deletions src/coreclr/jit/lowerarmarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,6 @@ void Lowering::LowerBlockStore(GenTreeBlk* blkNode)
{
// TODO-1stClassStructs: for now we can't work with STORE_BLOCK source in register.
const unsigned srcLclNum = src->AsLclVar()->GetLclNum();
INDEBUG(const LclVarDsc* lvlVar = comp->lvaGetDesc(srcLclNum););
assert(comp->lvaVarDoNotEnregister(srcLclNum) || lvlVar->HasGCPtr());
comp->lvaSetVarDoNotEnregister(srcLclNum DEBUGARG(Compiler::DNER_BlockOp));
}

Expand Down
2 changes: 0 additions & 2 deletions src/coreclr/jit/lowerxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,6 @@ void Lowering::LowerBlockStore(GenTreeBlk* blkNode)
{
// TODO-1stClassStructs: for now we can't work with STORE_BLOCK source in register.
const unsigned srcLclNum = src->AsLclVar()->GetLclNum();
INDEBUG(const LclVarDsc* lvlVar = comp->lvaGetDesc(srcLclNum););
assert(comp->lvaVarDoNotEnregister(srcLclNum) || lvlVar->HasGCPtr());
comp->lvaSetVarDoNotEnregister(srcLclNum DEBUGARG(Compiler::DNER_BlockOp));
}

Expand Down