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

Zarko Todorovski via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 10 10:28:46 PST 2021


Author: Zarko Todorovski
Date: 2021-11-10T13:28:32-05:00
New Revision: ed4a91300b8f8eadf2b1ef2f9f212ac2cc3af5ee

URL: https://github.com/llvm/llvm-project/commit/ed4a91300b8f8eadf2b1ef2f9f212ac2cc3af5ee
DIFF: https://github.com/llvm/llvm-project/commit/ed4a91300b8f8eadf2b1ef2f9f212ac2cc3af5ee.diff

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

Rewording the comment to avoid the use of blacklist.

Added: 
    

Modified: 
    llvm/lib/Target/M68k/M68kISelLowering.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/M68k/M68kISelLowering.cpp b/llvm/lib/Target/M68k/M68kISelLowering.cpp
index c103339a4cd15..79b395f8f9841 100644
--- a/llvm/lib/Target/M68k/M68kISelLowering.cpp
+++ b/llvm/lib/Target/M68k/M68kISelLowering.cpp
@@ -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);


        


More information about the llvm-commits mailing list