[clang] [CIR] Support zero-result ops in clangir TableGen lowering (PR #202273)

via cfe-commits cfe-commits at lists.llvm.org
Mon Jun 8 00:19:30 PDT 2026


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- clang/lib/CIR/Lowering/DirectToLLVM/LowerToLLVM.cpp clang/utils/TableGen/CIRLoweringEmitter.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/clang/utils/TableGen/CIRLoweringEmitter.cpp b/clang/utils/TableGen/CIRLoweringEmitter.cpp
index dc2151e3f..4c4d0c370 100644
--- a/clang/utils/TableGen/CIRLoweringEmitter.cpp
+++ b/clang/utils/TableGen/CIRLoweringEmitter.cpp
@@ -192,8 +192,8 @@ void GenerateLLVMLoweringPattern(llvm::StringRef OpName,
       Code << "    rewriter.replaceOpWithNewOp<mlir::LLVM::" << LLVMOp
            << ">(op, mlir::TypeRange{}, adaptor.getOperands());\n";
     } else {
-      Code
-          << "    mlir::Type resTy = typeConverter->convertType(op.getType());\n";
+      Code << "    mlir::Type resTy = "
+              "typeConverter->convertType(op.getType());\n";
       Code << "    rewriter.replaceOpWithNewOp<mlir::LLVM::" << LLVMOp
            << ">(op, resTy, adaptor.getOperands());\n";
     }

``````````

</details>


https://github.com/llvm/llvm-project/pull/202273


More information about the cfe-commits mailing list