Skip to content
Merged
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
Next Next commit
disable differently
  • Loading branch information
AndyAyersMS committed Nov 23, 2021
commit ba9bb2947eb4abd5d782da2c39b9b45fee5304c8
20 changes: 10 additions & 10 deletions src/coreclr/jit/emitarm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11459,16 +11459,16 @@ size_t emitter::emitOutputInstr(insGroup* ig, instrDesc* id, BYTE** dp)
// then add "bkpt" instruction.
// instrDescAlign* alignInstr = (instrDescAlign*)id;

// if (emitComp->compStressCompile(Compiler::STRESS_EMITTER, 50) &&
// (alignInstr->idaIG != alignInstr->idaLoopHeadPredIG) && !skipIns)
// {
// // There is no good way to squeeze in "bkpt" as well as display it
// // in the disassembly because there is no corresponding instrDesc for
// // it. As such, leave it as is, the "0xD43E0000" bytecode will be seen
// // next to the nop instruction in disasm.
// // e.g. D43E0000 align [4 bytes for IG07]
// ins = INS_bkpt;
// }
if (emitComp->compStressCompile(Compiler::STRESS_EMITTER, 50) &&
(alignInstr->idaIG != alignInstr->idaLoopHeadPredIG) && !skipIns)
{
// There is no good way to squeeze in "bkpt" as well as display it
// in the disassembly because there is no corresponding instrDesc for
// it. As such, leave it as is, the "0xD43E0000" bytecode will be seen
// next to the nop instruction in disasm.
// e.g. D43E0000 align [4 bytes for IG07]
// ins = INS_bkpt;
}
#endif
}
#endif // FEATURE_LOOP_ALIGN
Expand Down