[clang] [CIR] Defer emitting function definitions (PR #142862)

via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 4 17:01:33 PDT 2025


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 HEAD~1 HEAD --extensions cpp -- clang/test/CIR/CodeGen/deferred-fn-defs.cpp clang/lib/CIR/CodeGen/CIRGenModule.cpp
``````````

</details>

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

``````````diff
diff --git a/clang/lib/CIR/CodeGen/CIRGenModule.cpp b/clang/lib/CIR/CodeGen/CIRGenModule.cpp
index 0ad674344..87e364197 100644
--- a/clang/lib/CIR/CodeGen/CIRGenModule.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenModule.cpp
@@ -1563,7 +1563,7 @@ cir::FuncOp CIRGenModule::getOrCreateCIRFunction(
   } else if (getLangOpts().CPlusPlus && d) {
     // Look for a declaration that's lexically in a record.
     for (const auto *fd = cast<FunctionDecl>(d)->getMostRecentDecl(); fd;
-          fd = fd->getPreviousDecl()) {
+         fd = fd->getPreviousDecl()) {
       if (isa<CXXRecordDecl>(fd->getLexicalDeclContext())) {
         if (fd->doesThisDeclarationHaveABody()) {
           addDeferredDeclToEmit(gd.getWithDecl(fd));

``````````

</details>


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


More information about the cfe-commits mailing list