[Mlir-commits] [mlir] d1c086e - [MLIR] Apply clang-tidy fixes for bugprone-argument-comment in PDLToPDLInterp.cpp (NFC)

Mehdi Amini llvmlistbot at llvm.org
Mon Oct 27 22:25:42 PDT 2025


Author: Mehdi Amini
Date: 2025-10-27T22:22:54-07:00
New Revision: d1c086e82af239b245fe8d7832f2753436634990

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

LOG: [MLIR] Apply clang-tidy fixes for bugprone-argument-comment in PDLToPDLInterp.cpp (NFC)

Added: 
    

Modified: 
    mlir/lib/Conversion/PDLToPDLInterp/PDLToPDLInterp.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Conversion/PDLToPDLInterp/PDLToPDLInterp.cpp b/mlir/lib/Conversion/PDLToPDLInterp/PDLToPDLInterp.cpp
index b711e33cfc0d6..a4c66e125f6bf 100644
--- a/mlir/lib/Conversion/PDLToPDLInterp/PDLToPDLInterp.cpp
+++ b/mlir/lib/Conversion/PDLToPDLInterp/PDLToPDLInterp.cpp
@@ -692,7 +692,7 @@ SymbolRefAttr PatternLowering::generateRewriter(
         llvm::map_range(rewriter.getExternalArgs(), mapRewriteValue);
     args.append(mappedArgs.begin(), mappedArgs.end());
     pdl_interp::ApplyRewriteOp::create(builder, rewriter.getLoc(),
-                                       /*resultTypes=*/TypeRange(), rewriteName,
+                                       /*results=*/TypeRange(), rewriteName,
                                        args);
   } else {
     // Otherwise this is a dag rewriter defined using PDL operations.


        


More information about the Mlir-commits mailing list