[llvm] a240b29 - [NFC] Simply update a FIXME comment

Qiu Chaofan via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 15 07:44:44 PDT 2021


Author: Qiu Chaofan
Date: 2021-08-15T22:43:46+08:00
New Revision: a240b29f21b0ce2f861e703c7f4c1fcfc40a9fc6

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

LOG: [NFC] Simply update a FIXME comment

X86 overrided LowerOperationWrapper was moved to common implementation
in a7eae62.

Added: 
    

Modified: 
    llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
index ebe3bfc4b75ac..c29822120921b 100644
--- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
@@ -538,8 +538,8 @@ SDValue VectorLegalizer::LegalizeOp(SDValue Op) {
   return RecursivelyLegalizeResults(Op, ResultVals);
 }
 
-// FIXME: This is very similar to the X86 override of
-// TargetLowering::LowerOperationWrapper. Can we merge them somehow?
+// FIXME: This is very similar to TargetLowering::LowerOperationWrapper. Can we
+// merge them somehow?
 bool VectorLegalizer::LowerOperationWrapper(SDNode *Node,
                                             SmallVectorImpl<SDValue> &Results) {
   SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG);


        


More information about the llvm-commits mailing list