Skip to content

Commit c186b28

Browse files
authored
Disable changing align nop padding to breakpoints for arm64 under jit stress (#61951)
* Disable converting nop padding to breakpoints for arm64 under jit stress. Workaround for issue #61944. * disable differently * fix
1 parent 141dae4 commit c186b28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/emitarm64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11467,7 +11467,7 @@ size_t emitter::emitOutputInstr(insGroup* ig, instrDesc* id, BYTE** dp)
1146711467
// it. As such, leave it as is, the "0xD43E0000" bytecode will be seen
1146811468
// next to the nop instruction in disasm.
1146911469
// e.g. D43E0000 align [4 bytes for IG07]
11470-
ins = INS_BREAKPOINT;
11470+
// ins = INS_bkpt;
1147111471
}
1147211472
#endif
1147311473
}

0 commit comments

Comments
 (0)