[NFC][llvm][M68k] Inclusive language: reword comment

Rewording the comment to avoid the use of blacklist.
This commit is contained in:
Zarko Todorovski 2021-11-10 13:20:06 -05:00
parent 581a6a8118
commit ed4a91300b
1 changed files with 1 additions and 1 deletions

View File

@ -2202,7 +2202,7 @@ SDValue M68kTargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Op2.getOpcode() == ISD::TRUNCATE) {
SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
if (T1.getValueType() == T2.getValueType() &&
// Blacklist CopyFromReg to avoid partial register stalls.
// Block CopyFromReg so partial register stalls are avoided.
T1.getOpcode() != ISD::CopyFromReg &&
T2.getOpcode() != ISD::CopyFromReg) {
SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);