[clang] [CIR] Record the source level identity of functions on cir.func (PR #207261)

via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 6 17:49:15 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/unittests/CIR/CallOpTest.cpp clang/lib/CIR/CodeGen/CIRGenModule.cpp clang/lib/CIR/Dialect/IR/CIRDialect.cpp clang/test/CIR/CodeGen/array-init-loop-exprs.cpp clang/test/CIR/CodeGen/ctor-try-body.cpp clang/test/CIR/CodeGen/cxx-special-member-attr.cpp clang/test/CIR/CodeGen/inherited-ctors.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/lib/CIR/Dialect/IR/CIRDialect.cpp b/clang/lib/CIR/Dialect/IR/CIRDialect.cpp
index 0ffb48c35..9a79dd2d8 100644
--- a/clang/lib/CIR/Dialect/IR/CIRDialect.cpp
+++ b/clang/lib/CIR/Dialect/IR/CIRDialect.cpp
@@ -2560,7 +2560,8 @@ ParseResult cir::FuncOp::parse(OpAsmParser &parser, OperationState &state) {
       return failure();
     if (!mlir::isa<cir::CXXCtorAttr, cir::CXXDtorAttr, cir::CXXAssignAttr>(
             attr))
-      return parser.emitError(attrLoc, "expected a function info attribute, got ")
+      return parser.emitError(attrLoc,
+                              "expected a function info attribute, got ")
              << attr;
     state.addAttribute(funcInfoNameAttr, attr);
 

``````````

</details>


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


More information about the cfe-commits mailing list