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
1 change: 1 addition & 0 deletions src/coreclr/jit/hwintrinsiccodegenarm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -852,6 +852,7 @@ void CodeGen::genHWIntrinsic(GenTreeHWIntrinsic* node)
// For these intrinsics we cannot use movprfx instruction to populate `targetReg` with
// `embMaskOp1Reg`. Thus, we need to perform move before the operation, and then "sel" to
// select the active lanes.
assert(targetReg != embMaskOp2Reg);
GetEmitter()->emitIns_Mov(INS_sve_mov, emitSize, targetReg, embMaskOp1Reg,
/* canSkip */ true, INS_OPTS_SCALABLE_S);
emitInsHelper(targetReg, maskReg, embMaskOp2Reg);
Expand Down
Loading